import { DecoratorGeneratorType, DeepReadonly, ISwaggerExternalDocs, ISwaggerSecurityRequirement, ISwaggerServer } from "../interfaces"; export declare const RouteTag: (...tags: Readonly) => DecoratorGeneratorType; export declare const RouteSummary: (summary: string) => DecoratorGeneratorType; export declare const RouteDescription: (description: string) => DecoratorGeneratorType; export declare const RouteExternalDocs: (externalDocs: Readonly) => DecoratorGeneratorType; export declare const RouteDeprecated: (routeDeprecated?: boolean) => DecoratorGeneratorType; export declare const RouteSecurity: (security: DeepReadonly) => DecoratorGeneratorType; export declare const RouteServers: (server: DeepReadonly) => DecoratorGeneratorType;