interface UrlPattern { path: string; params: { [key: string]: string; }; } export declare const findPatterns: (url: string) => UrlPattern; export {};