/// <reference types="react" />
export 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<BlockCheckboxProps>;
export { BlockCheckbox };
