import { ApiOperation } from "../../../model/open-api/ApiOperation"; /** * Decorator that can be placed on an endpoint to describe it in any generated * OpenAPI specification. * * @param apiOperationInfo Information about this api operation; will be merged with * existing info if present, replacing any existing properties, * if provided in this parameter. */ export declare function apiOperation(apiOperationInfo: ApiOperation): (classDefinition: object, methodName: string) => void;