UNPKG

331 BTypeScriptView Raw
1import React from 'react';
2export declare type BlockCheckboxProps = {
3 value: string;
4 onChange: (key: string) => void;
5 list?: {
6 title: string;
7 key: string;
8 }[];
9 configType: string;
10 prefixCls: string;
11};
12declare const BlockCheckbox: React.FC<BlockCheckboxProps>;
13export default BlockCheckbox;