import { V as Value } from '../shared/queryzz.c9af6ff2.js'; import { Dispatch, SetStateAction } from 'react'; interface Options { parse?: boolean; array?: boolean; } type UseState = [T, Dispatch>]; declare function useQuery(key: string): UseState; declare function useQuery(key: string, options: Options & { parse: false; }): UseState; declare function useQuery(key: string, options: Options & { array: true; }): UseState; declare function useQuery(key: string, options: Options & { array: true; parse: false; }): UseState; declare function useQuery(key: string, options: Options): UseState; export { useQuery };