import { CLIOptions } from './cli.js'; export interface OutputOptions { content: string; outputPath?: string; verbose: boolean; quiet: boolean; } /** * Writes output to file or stdout based on CLI options. */ export declare function writeOutput(options: OutputOptions): Promise; /** * Logs verbose information if verbose mode is enabled. */ export declare function logVerbose(message: string, options: Pick): void; /** * Logs info messages unless quiet mode is enabled. */ export declare function logInfo(message: string, options: Pick): void; /** * Logs error messages (always shown). */ export declare function logError(message: string): void; //# sourceMappingURL=output.d.ts.map