import { CSSProperties } from 'react'; import { IOperationItem } from './model'; export interface IOperationsProps { /** * @description 操作列表 * @default [] */ operations: IOperationItem[]; /** * @description 溢出折行 * @default false */ wrap?: boolean; /** * @description 自定义样式 * @default - */ style?: CSSProperties; /** * @description 自定义类名 * @default - */ className?: string; } export declare const Operations: { (props: IOperationsProps): JSX.Element; Item: (operation: IOperationItem) => JSX.Element; };