import { Ref } from 'vue-demi'; export interface UseUrlStateOptions { localStorageKey?: string; detectNumber?: boolean; } interface UrlState { [key: string]: any; } export declare function useUrlState(routerPushFn: (path: string) => void, initialState?: S | (() => S), options?: UseUrlStateOptions): Ref; export {};