import { ActionData, ActionComposite } from '../../core/index'; import { IContainer } from '../../IContainer'; import { AdviceMetadata } from '../metadatas/index'; export interface InvokeAfterConstructorActionData extends ActionData { } export declare class InvokeAfterConstructorAction extends ActionComposite { constructor(); protected working(container: IContainer, data: InvokeAfterConstructorActionData): void; }