export type ReasoningLevel = 'minimal' | 'low' | 'medium' | 'high' | 'max' | 'xhigh'; export declare const REASONING_LEVELS: { value: ReasoningLevel; label: string; }[]; interface ReasoningTabsProps { value: ReasoningLevel; onChange: (level: ReasoningLevel) => void; disabled?: boolean; } export declare function ReasoningTabs({ value, onChange, disabled, }: ReasoningTabsProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=ReasoningTabs.d.ts.map