import { InjectableMetadata } from './InjectableMetadata'; /** * Decorator for an injectable. * This decorator is optional but can be used to attach additional metadata. * * @param meta The metadata to attach to the decorated class * * @returns *ClassDecorator* */ export declare function Injectable(meta?: InjectableMetadata): ClassDecorator;