import type { AgentProperties } from '../api/types.js'; interface PresetInfo { description: string; llm: string; tts: string; asr: string; properties: Partial; } export declare const PRESETS: Record; /** Look up a preset by name. Returns undefined if not found. */ export declare function getPreset(name: string): Partial | undefined; /** List all available presets with their metadata. */ export declare function listPresets(): Array<{ name: string; description: string; llm: string; tts: string; asr: string; }>; export {};