UNPKG

384 BTypeScriptView Raw
1/// <reference types="react" />
2export declare type BlockCheckboxProps = {
3 value: string;
4 onChange: (key: string) => void;
5 list?: {
6 title: string;
7 key: string;
8 icon?: React.ReactNode;
9 }[];
10 configType: string;
11 prefixCls: string;
12 hashId: string;
13};
14declare const BlockCheckbox: React.FC<BlockCheckboxProps>;
15export { BlockCheckbox };