interface Route { pathname: string; query?: { [key: string]: string | string[] | undefined; }; hash?: string | null | undefined; } interface RouteOptions { trailingSlash?: boolean; } export declare function route(r: Route, options?: RouteOptions): string; export {};