interface IDecodeUrlResponse { fullPath: string; path: string; basepath: string; queryParams: Record; } export declare const decodeUrl: (url: string) => IDecodeUrlResponse; export declare function validatePath(path: string): void; export {};