import type { ComponentProps, FC, PropsWithChildren } from 'react'; import type { FlowbiteSizes } from '../Flowbite/FlowbiteTheme'; export interface FlowbiteRatingTheme { base: string; star: { sizes: StarSizes; filled: string; empty: string; }; advanced: { base: string; label: string; progress: { base: string; fill: string; label: string; }; }; } export interface StarSizes extends Pick { [key: string]: string; } export interface RatingProps extends PropsWithChildren> { size?: keyof StarSizes; } export declare const Rating: FC & { Star: FC; Advanced: FC; };