export declare namespace TypedRoute { function Get(path?: string): (target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor | undefined) => void; function Post(path?: string): (target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor | undefined) => void; function Patch(path?: string): (target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor | undefined) => void; function Put(path?: string): (target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor | undefined) => void; function Delete(path?: string): (target: object | TFunction, propertyKey?: string | symbol | undefined, descriptor?: TypedPropertyDescriptor | undefined) => void; } //# sourceMappingURL=TypedRoute.d.ts.map