export interface UseQueryParamsOptions { initialValue?: TValue; replaceState?: boolean; } /** * Very similar to `useQueryParams`, it eases the process of manipulate a query string that handles multiple values */ declare const useQueryParams: (key: string, options?: UseQueryParamsOptions) => [TValue, (nextValue?: TValue | undefined) => void]; export default useQueryParams;