import { MaybeRef } from 'vue'; import { type TableExpose, type TableProps } from './table'; export type UseTableProps = TableProps & { [prop: PropertyKey]: any; }; export declare function useTable(props: MaybeRef): [UseTableProps, TableExpose];