import { V as Value } from '../shared/queryzz.c9af6ff2.js'; import { Ref } from 'vue'; interface Options { parse?: boolean; array?: boolean; } declare function useQuery(key: string): Ref; declare function useQuery(key: string, options: Options & { parse: false; }): Ref; declare function useQuery(key: string, options: Options & { array: true; }): Ref; declare function useQuery(key: string, options: Options & { array: true; parse: false; }): Ref; declare function useQuery(key: string, options: Options): Ref; export { useQuery };