UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

11 lines (10 loc) 390 B
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 {};