export declare type Route = string[] | string; export declare type Prefix = string; export declare type BaseParamType = { toString: () => string; }; export declare type MethodRouteConfig = { route?: Route; suffix?: Route; };