/** * 定义td 数据 */ export declare const colDataInfo: (type: any) => { id: string; colspan: number; rowspan: number; items: any[]; cellVisible: boolean; columns?: undefined; } | { id: string; columns: { id: string; colspan: number; items: any[]; cellVisible: boolean; }[]; colspan?: undefined; rowspan?: undefined; items?: undefined; cellVisible?: undefined; }; export declare const insertRightCol: (props: any, type: any, allCol?: boolean) => void; export declare const insertBelowRow: (props: any, type: any) => void; /** * 单元格操作方法 * @param command * @param props * @param type */ export declare const tableCellOperation: (command: string, props: any, type?: string) => void; /** * 单元格按钮是否可点击控制 * @param props * @param buttonControl 按钮控制 * @param type */ export declare const tableAction: (props: any, buttonControl: any, type?: any) => void;