import type { ComponentProps, FC, PropsWithChildren } from "react"; import { RatingAdvancedSizes } from "./RatingAdvanced"; export interface keepRatingTheme { base: string; star: { base: string; }; advanced: { base: string; label: string; progress: { base: string; fill: string; label: string; size: RatingAdvancedSizes; }; }; } export interface RatingProps extends PropsWithChildren> { size?: number; } export declare const Rating: FC & { Star: FC; Advanced: FC; };