/** * @angular-modernizer/plugin-angular - Promise Component to Reactive Transform Rule * * Thin rule wrapper. All logic in PromiseComponentTransformOrchestrator. */ import type { TransformRule, TransformContext, TransformResult } from '@angular-modernizer/plugin-system'; import type { PublicApi } from '@angular-modernizer/api'; export declare class PromiseComponentTransformRule implements TransformRule { readonly id = "angular:promise-component-to-reactive"; readonly name = "Promise Component to Reactive Transform"; readonly description = "Transforms async @Component methods to Observable properties, removing manual change detection calls"; readonly category = "refactoring"; readonly tags: string[]; private readonly orchestrator; transform(context: TransformContext): Promise; } //# sourceMappingURL=promise-component-transform.rule.d.ts.map