import type { FC, ReactNode } from "react"; export interface RatingStarProps { filledType?: "regular" | "fill" | "bold" | "duotone" | "thin" | "light"; starType?: "half" | "full"; starIcon?: ReactNode; className?: string; color?: string; } export declare const RatingStar: FC;