import { Tree } from '@angular-devkit/schematics'; export interface HasComponentOptions { project: string; feature?: string | null; name: string; directory?: string | null; } export declare function HasComponent(host: Tree, options: Readonly): boolean;