/** * Steps preset configurations for the Steps component. * Each preset defines a reasoning style and named phases. */ export interface StepsPresetConfig { name: string; style: 'step-by-step' | 'think-aloud' | 'structured' | 'minimal' | 'least-to-most'; phases?: string[]; showReasoning: boolean; } export declare const STEPS_PRESETS: Record; //# sourceMappingURL=steps-presets.d.ts.map