import { Output } from "./Output"; export interface EnteredArgs { object: TIn; output: Output; } export interface EnteredAsyncArgs extends EnteredArgs { done(): void; failed(error: any): void; } export declare class EnteredAsyncArgs implements EnteredAsyncArgs { object: TIn; output: Output; private callback; constructor(object: TIn, output: Output, callback: (error?: any) => void); }