import { Output } from "./Output"; export interface EndedArgs { output: Output; } export interface EndedAsyncArgs extends EndedArgs { done(): void; failed(error: Error): void; } export declare class EndedAsyncArgs { output: Output; private callback; constructor(output: Output, callback: (error?: any) => void); }