import type { TableProps, TableActionType } from '../types/table'; import type { DynamicProps } from '../../../../types/utils'; declare type Props = Partial>; export declare function useTable(tableProps?: Props): [ (instance: TableActionType) => void, TableActionType ]; export {};