/// import { IFormListComponentProps } from '../type'; declare const useFormListTable: (props: IFormListComponentProps, source: 'editor' | 'engine') => { orderColumn: { key: string; title: any; fixed: string | undefined; render: (text: string, record: any, index: number) => number; } | null; operatorColumn: { key: string; title: string; width: any; fixed: string | undefined; render: (txt: string, record: any, index: number) => JSX.Element; } | null; }; export default useFormListTable;