/** * Constraint preset configurations for the Constraint component. * Each preset defines a constraint category, level, text, and optional positive alternative. */ export interface ConstraintPresetConfig { name: string; category: 'content' | 'format' | 'tone' | 'scope' | 'accuracy' | 'safety' | 'performance'; level: 'must' | 'should' | 'may' | 'must-not' | 'should-not'; text: string; positiveAlternative?: string; } export declare const CONSTRAINT_PRESETS: Record; //# sourceMappingURL=constraint-presets.d.ts.map