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