/** * Shared Angular name constants for the fast-compile path. * * Centralised here to prevent drift when decorator sets are referenced * across multiple source files (compile, registry, JIT, metadata). */ /** All five Angular class decorators. */ export declare const ANGULAR_DECORATORS: Set; /** * Angular decorators that produce compilable declarations (selector, template, * pipe name, or module exports). Excludes `@Injectable` which self-registers * via ɵprov and doesn't need Ivy compilation. */ export declare const COMPILABLE_DECORATORS: Set; /** Decorator names used on class fields and host bindings. */ export declare const FIELD_DECORATORS: Set; /** Signal-based reactive APIs that need downleveling or metadata extraction. */ export declare const SIGNAL_APIS: Set;