/// export declare type BlockCheckboxProps = { value: string; onChange: (key: string) => void; list?: { title: string; key: string; icon?: React.ReactNode; }[]; configType: string; prefixCls: string; hashId: string; }; declare const BlockCheckbox: React.FC; export { BlockCheckbox };