import { MethodOptions } from '../../interfaces/DecoratorOptions.js'; /** * decorator that generate custom GET route */ export declare const Get: (subRoute?: string, options?: MethodOptions) => (target: any, propertyKey: string, descriptor: PropertyDescriptor) => any; /** * decorator that generate custom POST route */ export declare const Post: (subRoute?: string, options?: MethodOptions) => (target: any, propertyKey: string, descriptor: PropertyDescriptor) => any; /** * decorator that generate custom PUT route */ export declare const Put: (subRoute?: string, options?: MethodOptions) => (target: any, propertyKey: string, descriptor: PropertyDescriptor) => any; /** * decorator that generate custom PATCH route */ export declare const Patch: (subRoute?: string, options?: MethodOptions) => (target: any, propertyKey: string, descriptor: PropertyDescriptor) => any; /** * decorator that generate custom DELETE route */ export declare const Delete: (subRoute?: string, options?: MethodOptions) => (target: any, propertyKey: string, descriptor: PropertyDescriptor) => any; //# sourceMappingURL=methods.decorator.d.ts.map