import type { GeneratorOpts } from '../utils/opts.js'; import SubGeneratorBase from '../base/sub-gen-base.js'; /** * Generator for adding component usages to a project. */ declare class AddComponentUsagesGenerator extends SubGeneratorBase { /** * The answers from the prompts. */ private answers; /** * The variant. */ private variant; /** * The project path. */ private readonly projectPath; /** * Creates an instance of the generator. * * @param {string | string[]} args - The arguments passed to the generator. * @param {GeneratorOpts} opts - The options for the generator. */ constructor(args: string | string[], opts: GeneratorOpts); initializing(): Promise; prompting(): Promise; writing(): Promise; end(): void; /** * Creates the component usage data. * * @returns {ComponentUsagesData} The component usage data. */ private _createComponentUsageData; } export default AddComponentUsagesGenerator; //# sourceMappingURL=index.d.ts.map