@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
11 lines (10 loc) • 392 B
TypeScript
import { GetStylesApi } from '../../core';
import type { RatingFactory } from './Rating';
interface RatingContextValue {
getStyles: GetStylesApi<RatingFactory>;
}
export declare const RatingProvider: ({ children, value }: {
value: RatingContextValue;
children: React.ReactNode;
}) => import("react/jsx-runtime").JSX.Element, useRatingContext: () => RatingContextValue;
export {};