export declare const METHOD_NAME_ALL: "ALL"; export declare const METHOD_NAME_ALL_LOWERCASE: "all"; export interface Router { add(method: string, path: string, handler: T): void; match(method: string, path: string): Result | null; } export interface Result { handlers: T[]; params: Record; }