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