UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

8 lines (7 loc) 298 B
export interface RadioCardContextValue { checked: boolean; } export declare const RadioCardProvider: ({ children, value }: { value: RadioCardContextValue; children: React.ReactNode; }) => import("react/jsx-runtime").JSX.Element, useRadioCardContext: () => RadioCardContextValue | null;