import { Ref } from 'vue'; export interface TableStore { tableKey: Ref; incrementTableKey: () => void; } declare const useTableStore: () => TableStore; export default useTableStore;