import type { Breakpoint, BreakpointAnswer, ResponderProfile } from "../types.js"; /** * Format a breakpoint for display. */ export declare function formatBreakpoint(breakpoint: Breakpoint, jsonMode: boolean): string; /** * Format an answer for display. */ export declare function formatAnswer(answer: BreakpointAnswer, jsonMode: boolean): string; /** * Format a responder profile for display. */ export declare function formatResponder(responder: ResponderProfile, jsonMode: boolean): string; /** * Format data as a simple table. */ export declare function formatTable(rows: string[][], headers: string[]): string; /** * Print output, handling JSON mode. */ export declare function printOutput(data: unknown, jsonMode: boolean): void; /** * Print an error, handling JSON mode. */ export declare function printError(error: unknown, jsonMode: boolean): void; //# sourceMappingURL=output.d.ts.map