import type { PresetName, VerbosityPreset, OutputFormat, DetailLevel } from './types.js'; export declare function getPreset(name: string): VerbosityPreset; export declare const PRESET_NAMES: PresetName[]; export declare function getPresetForDetail(detail: DetailLevel): VerbosityPreset; export declare const DETAIL_LEVELS: DetailLevel[]; export declare const MAX_CHUNK_BUDGET = 8000; export declare function getDefaultTokenBudget(): number; export declare function getDefaultPresetName(isTTY: boolean): PresetName; export declare function getDefaultOutputFormat(): OutputFormat | undefined; export declare function resolveOutputFormat(opts: { output?: OutputFormat; json?: boolean; isTTY: boolean; }): OutputFormat; //# sourceMappingURL=config.d.ts.map