16 lines
376 B
TypeScript
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 };
|