@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
10 lines (9 loc) • 432 B
TypeScript
import { MantineSize } from '../../core';
interface CheckboxGroupContextValue {
value: string[];
onChange: (event: React.ChangeEvent<HTMLInputElement> | string) => void;
size: MantineSize | (string & {}) | undefined;
}
export declare const CheckboxGroupProvider: import("react").Provider<CheckboxGroupContextValue | null>;
export declare const useCheckboxGroupContext: () => CheckboxGroupContextValue | null;
export {};