import '@ant-design/compatible/assets/index.less'; import type { FormComponentProps } from '@ant-design/compatible/es/form'; import React from 'react'; import './index.less'; export interface EditTableRowProps extends FormComponentProps { index: string | number; } export interface EditableCellProps { editable?: any; dataIndex: string | number; title?: string; record: any; index?: React.ReactNode; type?: string; options?: any; handleSave: (item: any, type: string | number) => void; relateKey?: string; isRequired?: boolean; optObj?: any; allowClear?: boolean; min?: any; max?: any; onClick?: any; className?: React.CSSProperties; render: (showValue: string, record: any) => void; } declare const TableComponents: { body: { row: import("@ant-design/compatible/lib/form/interface").ConnectedComponentClass, import("@ant-design/compatible/lib/_util/types").Omit, "form">>; cell: React.FC; }; }; export default TableComponents;