import { NamedExoticComponent, ReactNode } from 'react'; import { SafeExtract, Size } from '../../types'; import { TooltipProps } from '../Tooltip/Tooltip'; export type RatingEnum = 'positive' | 'neutral' | 'negative'; export interface RatingsOverviewProps { /** * Sentiment of the rating */ sentiment: RatingEnum; /** * Size of the icon * @default 'md' */ size?: SafeExtract; /** * Tooltip content * If provided, the icon will be wrapped in a button with a tooltip */ tooltip?: ReactNode; /** * Tooltip placement * If provided, the tooltip placement will override the default */ tooltipPlacement?: TooltipProps['placement']; } export declare const RatingsOverview: NamedExoticComponent;