import type { FormActionType } from 'tav-ui/es/components/form/src/types/form'; import type { ComputedRef, Ref } from 'vue'; import type { BasicTableProps, TableActionType } from '../types/table'; declare type Props = Partial>; declare type DynamicProps = { [P in keyof T]: Ref | T[P] | ComputedRef; }; declare type UseTableMethod = TableActionType & { getForm: () => FormActionType; }; export declare function useTable(tableProps?: Props): [ (instance: TableActionType, formInstance: UseTableMethod) => void, TableActionType & { getForm: () => FormActionType; } ]; export {};