import { SourceFile } from 'ts-morph'; /** * Adds a provided class to the imports array of the component. * * @param sourceFile - The source file where the component class is located. * @param namedImport - The name of the class that should be added to the imports array of the component. * @param [moduleSpecifier] - The module specifier to import the class into the source file. * * @returns {void} */ export declare function AddComponentImport(sourceFile: SourceFile, namedImport: string, moduleSpecifier?: string): void;