import * as React from 'react'; import type { TableProps } from '@alifd/next/types/table'; import type { EditFromProps } from './components/edit-from'; import type { OperationsProps } from './components/operations'; import type { ActionColumnProps } from './hooks'; import './index.scss'; export declare const modalBusinessComponent: { title: string; value: string; Component: any; }[]; interface Props { actionColumnProps: ActionColumnProps; rowSelection: { mode: 'single' | 'none' | 'multiple'; }; indexColumn: boolean; cellDefault: string; url: string; __designMode: string; editable: boolean; title: string; changingField: { [x: string]: any; }; addButtonformBlocks: any; controlledPane: boolean; autoRequest: boolean; onRowClick: (value: any, rowIndex: number, record: any, context: any) => void; } export declare type CbayelEditTableProps = TableProps & EditFromProps & OperationsProps & Props; declare const EditTableRef: React.ForwardRefExoticComponent & React.RefAttributes>>; export default EditTableRef;