import { DependencyContainer } from "../types";
/**
 * Method decorator factory that results in the async method it is applied to being called
 *
 * @return {Function} The method decorator
 */
declare function initializer(): (target: any, propertyKey: string | symbol, descriptor: PropertyDescriptor) => any;
export declare function callInitializers(container: DependencyContainer, object: any): Promise<void>;
export default initializer;
