import type { CompilerCtx, ComponentCompilerMeta } from '@stencil/core/internal';
import type { OutputTargetAngular } from './types';
/**
 * Generates the patch-transform-selectors.mjs script for Angular transformTag support.
 * This script patches component selectors in the built Angular library to use the
 * transformed tag names (e.g., 'my-component' -> 'v1-my-component').
 */
export declare function generateTransformTagScript(compilerCtx: CompilerCtx, components: ComponentCompilerMeta[], outputTarget: OutputTargetAngular, packageName: string): Promise<void>;
