import { RunResult, RunResultStreaming } from '../result'; /** * Formats a RunResult object as a human-readable string * * @param result The RunResult to format * @returns A formatted string representation of the RunResult */ export declare function prettyPrintResult(result: RunResult): string; /** * Formats a RunResultStreaming object as a human-readable string * * @param result The RunResultStreaming to format * @returns A formatted string representation of the RunResultStreaming */ export declare function prettyPrintRunResultStreaming(result: RunResultStreaming): string;