import { Request } from './types'; export interface ParsedUrl { href: string; path: string; pathname: string; query: Record; search: string | null; /** @private */ _full: String; } export declare function parseQueryString(str: string): Record; export declare function parseUrl(req: Request): ParsedUrl;