import type { RouteDefinition, RouteMethod } from '../typings'; import { Schema } from './schema'; export declare class Route { server: any; filePath: string; file: RouteDefinition; schema?: Schema; constructor(server: any, filePath: string); private loadFile; get path(): string; get methods(): string[]; settingsFor(method?: RouteMethod): any; ratelimitsFor(method?: RouteMethod): any; toString(): string; } //# sourceMappingURL=route.d.ts.map