import { type ClassDeclaration } from 'ts-morph'; import { type Pattern, type Query, type StructureType } from '../../utils'; export declare function getNgModules(pattern: Pattern, query?: Query, 'kind'>>): ClassDeclaration[]; /** * Find NgModule where the component was declared. */ export declare function findNgModule(ngComponent: ClassDeclaration, pattern: Pattern): ClassDeclaration | null;