UNPKG

@ant-design/pro-layout

Version:
16 lines (15 loc) 376 B
/// <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 };