/** * Normalize an untrusted redirect target to a same-origin, root-relative URL. * Encoded path data is rejected rather than decoded so traversal and URL parser * differences cannot change the destination after validation. */ export declare function normalizeRootRelativeRedirect(value: string): string | undefined;