import { ComponentProps, FC } from 'react'; import { DeepPartial, MainSizes } from '../../types/types'; import { RatingTheme } from './theme'; export interface RatingProps extends ComponentProps<"div"> { size?: MainSizes; theme?: DeepPartial; stars?: number; filled?: number; starIcon?: FC>; starClassName?: string; } export declare const Rating: FC; //# sourceMappingURL=Rating.d.ts.map