export interface UseQueryParamOptions { initialValue?: TValue; replaceState?: boolean; } /** * Ease the process of modify the query string in the URL for the current location. */ declare const useQueryParam: (key: string, options?: UseQueryParamOptions) => [TValue, (nextValue?: TValue | undefined) => void]; export default useQueryParam;