import React from 'react'; export declare type BlockCheckboxProps = { value: string; onChange: (key: string) => void; list?: { title: string; key: string; }[]; configType: string; prefixCls: string; }; declare const BlockCheckbox: React.FC; export default BlockCheckbox;