import type { Tree } from '@nx/devkit';
import type { NestGeneratorWithLanguageOption, NestGeneratorWithTestOption } from '../utils';
export type ControllerGeneratorOptions = NestGeneratorWithLanguageOption & NestGeneratorWithTestOption & {
    module?: string;
    skipImport?: boolean;
};
export declare function controllerGenerator(tree: Tree, rawOptions: ControllerGeneratorOptions): Promise<any>;
export default controllerGenerator;
