rsuite
Version:
A suite of react components
13 lines (12 loc) • 443 B
TypeScript
import React from 'react';
export interface CheckboxGroupContextValue {
inline?: boolean;
name?: string;
value?: (string | number)[];
controlled?: boolean;
disabled?: boolean;
readOnly?: boolean;
plaintext?: boolean;
onChange?: (value: any, checked: boolean, event: React.ChangeEvent<HTMLInputElement>) => void;
}
export declare const CheckboxGroupContext: React.Context<CheckboxGroupContextValue | undefined>;