import { GuardItem, HttpMethod } from '#types/mix.js'; export interface RouteDecoratorMetadata { [key: string]: RouteMetadata[]; } export interface RouteMetadata { httpMethod: HttpMethod; path: string; guards: GuardItem[]; } export declare const route: (httpMethod: HttpMethod, path?: string | undefined, guards?: GuardItem[] | undefined) => (target: any, propertyKey: string | symbol) => void; //# sourceMappingURL=route.d.ts.map