import React, { ReactNode } from 'react'; export declare const RatingCard: ({ leftSlot, rightSlot, title, titleIcon, link, }: { leftSlot: ReactNode; rightSlot: ReactNode; title: string; titleIcon?: ReactNode; link: string; }) => React.JSX.Element;