import { ImportDeclarationStructure, OptionalKind, SourceFile } from 'ts-morph';
export interface CoerceNestModuleControllerOptions {
    name: string;
    structures?: Array<OptionalKind<ImportDeclarationStructure>>;
    overwrite?: boolean;
    moduleSpecifier?: string;
}
export declare function CoerceNestModuleController(sourceFile: SourceFile, options: CoerceNestModuleControllerOptions): void;
