import type { Params } from '../../router';
export declare class Node<T> {
             
    insert(method: string, path: string, handler: T): void;
    search(method: string, path: string): [[T, Params][]];
}
