import * as ts from 'typescript'; import { PluginOptions } from '../merge-options'; import { AbstractFileVisitor } from './abstract.visitor'; export declare class ControllerClassVisitor extends AbstractFileVisitor { visit(sourceFile: ts.SourceFile, ctx: ts.TransformationContext, program: ts.Program, options: PluginOptions): ts.SourceFile; addDecoratorToNode(compilerNode: ts.MethodDeclaration, typeChecker: ts.TypeChecker, options: PluginOptions, hostFilename: string, sourceFile: ts.SourceFile): ts.MethodDeclaration; createApiOperationDecorator(node: ts.MethodDeclaration, nodeArray: ts.NodeArray, options: PluginOptions, sourceFile: ts.SourceFile): ts.Decorator[]; createDecoratorObjectLiteralExpr(node: ts.MethodDeclaration, typeChecker: ts.TypeChecker, existingProperties: ts.NodeArray, hostFilename: string): ts.ObjectLiteralExpression; createTypePropertyAssignment(node: ts.MethodDeclaration, typeChecker: ts.TypeChecker, existingProperties: ts.NodeArray, hostFilename: string): ts.PropertyAssignment; createStatusPropertyAssignment(node: ts.MethodDeclaration, existingProperties: ts.NodeArray): ts.PropertyAssignment; getStatusCodeIdentifier(node: ts.MethodDeclaration): any; }