test-nut-ui
Version:
<p align="center"> <img alt="logo" src="https://img11.360buyimg.com/imagetools/jfs/t1/211965/25/7152/22022/61b16785E433119bb/aa41d7a9f7e823f3.png" width="150" style="margin-bottom: 10px;"> </p>
12 lines (11 loc) • 361 B
TypeScript
/// <reference types="react" />
declare const CheckboxGroupContext: import("react").Context<{
labelPosition: 'left' | 'right';
size: 'middle' | 'small';
disabled: boolean | undefined;
value: string[];
max: number | undefined;
check: (value: string) => void;
uncheck: (value: string) => void;
}>;
export default CheckboxGroupContext;