import { ComputedRef, Ref } from 'vue'; import { Nullable, Recordable } from '../../../types'; import { BasicTableProps, TableActionType } from '../types/table'; type Instance = TableActionType & { wrapRef: Ref>; getBindValues: ComputedRef; }; type RetInstance = Omit & { getBindValues: ComputedRef; }; export declare function createTableContext(instance: Instance): void; export declare function useTableContext(): RetInstance; export {};