import type { FormInstance } from 'antd'; import type { ISchemaIFieldListItem } from '../../../../services/memory/getMemoryTableList'; import { EDataType } from '../../../../services/memory/getMemoryTableList'; export declare function getDefaultAddData(options?: ISchemaIFieldListItem[]): any; declare function useColumn(options: ISchemaIFieldListItem[], form: FormInstance, handlePutData: (id: string) => void, handleDelData: (dataId: string) => void, setAddSpace: (...args: any[]) => void, pageNo: number): { title: import("react/jsx-runtime").JSX.Element; dataIndex: string; align: string | undefined; onCell: (record: any) => { fieldName: string; dataType: EDataType; required: boolean; width: number | undefined; editing: boolean; }; render: (v: any) => any; }[]; export default useColumn;