import type { BasicTableProps, TableActionType } from '../types/table'; import type { DynamicProps } from '../../../../../typesutils'; import type { FormActionType } from '../../../..components/BzForm'; declare type Props = Partial>; declare type UseTableMethod = TableActionType & { getForm: () => FormActionType; }; export declare function useTable(tableProps?: Props): [ (instance: TableActionType, formInstance: UseTableMethod) => void, TableActionType & { getForm: () => FormActionType; } ]; export {};