import type { FlowContextDetailsResult, FlowLogResult } from '@sonisoft/now-sdk-ext-core'; export interface FlowCopyResult { success: boolean; newFlowSysId?: string; errorMessage?: string; errorCode?: number; } export interface FlowTestResult { success: boolean; contextId?: string; flowId?: string; state?: string; outputs?: Record; errorMessage?: string; } export declare class FlowDisplayService { formatCopyResult(result: FlowCopyResult, jsonOutput: boolean): string[]; formatCancelResult(result: any, jsonOutput: boolean): string[]; formatErrorResult(result: any, jsonOutput: boolean): string[]; formatExecutionResult(result: any, jsonOutput: boolean): string[]; formatMessageResult(result: any, jsonOutput: boolean): string[]; formatOutputsResult(result: any, jsonOutput: boolean): string[]; formatStatusResult(result: any, jsonOutput: boolean): string[]; formatTestResult(result: FlowTestResult, jsonOutput: boolean): string[]; formatDetailsResult(result: FlowContextDetailsResult, jsonOutput: boolean): string[]; formatLogsResult(result: FlowLogResult, jsonOutput: boolean): string[]; private _mapLogLevel; private _stateIcon; } //# sourceMappingURL=flow-display.service.d.ts.map