import type { DynamicStringEnumKeysOf, ThemingProps } from "../../types"; import type { RatingTheme } from "./Rating"; import type { RatingStarSizes } from "./RatingStar"; export interface RatingContextValue extends ThemingProps { size?: DynamicStringEnumKeysOf; } export declare const RatingContext: import("react").Context; export declare function useRatingContext(): RatingContextValue;