import React from 'react'; import { EditableProTable as OriginalEditableProTable } from '@ant-design/pro-components'; import type { ProColumnType } from '@ant-design/pro-components'; import { OperationColumnType } from './useOperationColumn'; interface IValueEnum { text: string; value: string; status: string; } declare type ExtendsColType = ProColumnType & { valueEnum?: IValueEnum[]; renderTag?: boolean; }; export declare type IEditableProTableProps = React.ComponentProps & { columns?: ExtendsColType[]; dynamicColumns?: ExtendsColType[]; operationColumn: OperationColumnType; intl?: string; }; declare const _default: any; export default _default;