import { type InkOutput } from "./inkoutput.js"; export declare const c: { reset: string; dim: string; bold: string; cyan: string; green: string; yellow: string; red: string; magenta: string; blue: string; gray: string; }; export type SectionOptions = { toolName?: string; box?: boolean; keepEmptyLines?: boolean; }; export type Section = { type: "user" | "assistant" | "tool_use" | "tool_result" | "echo" | "confirm"; content: string[]; partial?: string; options?: SectionOptions | undefined; }; export declare let output: InkOutput; export declare function initOutput(): void; //# sourceMappingURL=output.d.ts.map