import type { PipelineResult } from "../audio/pipeline.js"; import type { Logger } from "../utils/logger.js"; export declare function formatProcessSummary(options: { command: string; result: PipelineResult; sourceUrl?: string | null; downloadPath?: string | null; }): string; export declare function logProcessSummary(logger: Logger, command: string, result: PipelineResult, json: boolean, quiet: boolean, extras?: { sourceUrl?: string | null; downloadPath?: string | null; }): void;