/** * Task preset configurations for the Task component. * Each preset defines a task type, action verbs, and suggested output format. */ export interface TaskPresetConfig { name: string; type: 'generation' | 'transformation' | 'analysis' | 'extraction' | 'classification' | 'qa' | 'reasoning' | 'planning' | 'coding' | 'conversation'; verbs: string[]; defaultFormat?: string; requiresContext?: boolean; supportsExamples?: boolean; } export declare const TASK_PRESETS: Record; //# sourceMappingURL=task-presets.d.ts.map