import { GetStylesApi } from '../../core';
import type { RatingFactory } from './Rating';
interface RatingContextValue {
    getStyles: GetStylesApi<RatingFactory>;
}
export declare const RatingProvider: ({ children, value }: {
    value: RatingContextValue;
    children: import("react").ReactNode;
}) => import("react").JSX.Element, useRatingContext: () => RatingContextValue;
export {};
