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