import type { ComponentProps, FC, PropsWithChildren } from 'react'; export interface RatingAdvancedProps extends PropsWithChildren> { percentFilled?: number; } export declare const RatingAdvanced: FC;