import { BeanDecorator } from './base/BeanDecorator'; import { ClawjectApplicationDecorator } from './base/ClawjectApplicationDecorator'; import { ConfigurationDecorator } from './base/ConfigurationDecorator'; import { EmbeddedDecorator } from './base/EmbeddedDecorator'; import { ExternalDecorator } from './base/ExternalDecorator'; import { InternalDecorator } from './base/InternalDecorator'; import { LazyDecorator } from './base/LazyDecorator'; import { PostConstructDecorator } from './base/PostConstructDecorator'; import { PreDestroyDecorator } from './base/PreDestroyDecorator'; import { PrimaryDecorator } from './base/PrimaryDecorator'; import { QualifierDecorator } from './base/QualifierDecorator'; import { ScopeDecorator } from './base/ScopeDecorator'; export declare const BaseDecorators: { Bean: BeanDecorator; ClawjectApplication: ClawjectApplicationDecorator; Configuration: ConfigurationDecorator; Embedded: EmbeddedDecorator; External: ExternalDecorator; Internal: InternalDecorator; Lazy: LazyDecorator; PostConstruct: PostConstructDecorator; PreDestroy: PreDestroyDecorator; Primary: PrimaryDecorator; Qualifier: QualifierDecorator; Scope: ScopeDecorator; };