export declare function parseQueryParams(query?: string): T; /** * Match url path against a pattern and extract params */ export declare function parseRoute(pattern: string, path: string, search?: string): RoutingParam | null; export interface RoutingParam { params: T; queryParams: U; }