export declare const url: (href: string) => URLParserResponse | undefined; export interface URLParserResponse { base: string; params: { query: { [key: string]: string; }; hash: string; }; url: () => string; } //# sourceMappingURL=url.d.ts.map