import { RedirectOption } from './types'; export declare const encodeQueryParameters: (baseUrl: string, parameters?: Record) => string; /** * Transform options that include a redirectTo property so the * redirect url is absolute, given a base clientUrl. * If no client url is given, any relative redirectUrl is removed while * the other options are sent as-is. * @param clientUrl base client url * @param options * @returns */ export declare const rewriteRedirectTo: (clientUrl?: string, options?: T | undefined) => (Omit & { redirectTo?: string | undefined; }) | undefined; export declare function getParameterByName(name: string, url?: string): string | null | undefined; export declare function removeParameterFromWindow(name: string): void; //# sourceMappingURL=utils.d.ts.map