import OutputRequest from './models/output-request'; export default class Output { static ERROR: number; static SUCCESS: number; static WARNING: number; static processMessage: (message: any) => any; host: string; successCount: number; failCount: number; constructor(host: string); push: (type: any, outputRequest: OutputRequest, message?: string) => void; print: () => void; }