/**
 * Resolve a file relative to a URL path root.
 *
 * @param root - The URL root.
 * @param file - The file to resolve
 * @returns The resolve URL path
 */
export declare function relativeRequestPath(root: string, file: string): string;
