import { Tree } from '@angular-devkit/schematics';
export interface HasNestControllerOptions {
    project: string;
    feature?: string | null;
    shared?: boolean;
    name: string;
    nestModule: string;
    backend: {
        project?: string | null;
        kind?: any;
    } | undefined;
}
export declare function HasNestController(host: Tree, options: HasNestControllerOptions): boolean;
