Files
copilot-toolbox-sdfdsfds/node_modules/@ant-design/pro-layout/lib/components/SettingDrawer/BlockCheckbox.d.ts
2026-01-16 01:51:36 +00:00

16 lines
376 B
TypeScript

/// <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 };