import { Project, SourceFile } from 'ts-morph'; export interface AddNestControllerOptions { prefix?: string; addToModule?: boolean; modulePath?: string; sourceFile?: SourceFile; } export declare function AddNestController(project: Project, name: string, options?: AddNestControllerOptions): SourceFile;