import type { Query } from './types.ts'; /** * Returns query instance from manager that provided context. * If context is empty or not provided, returns `MemoryQuery`. * @param key Key. * @returns Query instance. * @internal */ export declare function useQueryInstance(key: string): Query;