import { type ComponentProps } from "react"; import type { ThemingProps } from "../../types"; export interface RatingAdvancedTheme { base: string; label: string; progress: { base: string; fill: string; label: string; }; } export interface RatingAdvancedProps extends ComponentProps<"div">, ThemingProps { percentFilled?: number; } export declare const RatingAdvanced: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;