import { Ref } from 'vue'; import { RouteLocationNormalized, Router } from 'vue-router'; export declare const useQueryParamService: () => { getTypedValue: (stringValue: string) => string | boolean; getQueryParams: () => Record; getQueryParamsForApp: () => Record; queryParamsToData: (q: Ref>, queryParams: Record) => void; dataToQueryParams: (q: Ref>, route: RouteLocationNormalized, router: Router) => void; watchQueryData: (q: Ref>, route: RouteLocationNormalized, router: Router) => void; initUrlBindingForApp: (q: Ref>, page: string, callback?: (page: string) => void) => number | null; cleanupUrlBinding: () => void; getPage: () => string; };