import { Type } from "typebox"; /** Shared provider-facing thinking-level vocabulary for schemas at the orchestration boundary. */ export declare function orchestrationThinkingLevelSchema(description?: string): Type.TUnion<[Type.TLiteral<"off">, Type.TLiteral<"minimal">, Type.TLiteral<"low">, Type.TLiteral<"medium">, Type.TLiteral<"high">, Type.TLiteral<"xhigh">, Type.TLiteral<"max">, Type.TLiteral<"ultra">]>; export declare const ORCHESTRATION_THINKING_LEVEL_SCHEMA: Type.TUnion<[Type.TLiteral<"off">, Type.TLiteral<"minimal">, Type.TLiteral<"low">, Type.TLiteral<"medium">, Type.TLiteral<"high">, Type.TLiteral<"xhigh">, Type.TLiteral<"max">, Type.TLiteral<"ultra">]>; /** Model defaults intentionally exclude `off`; absence represents the provider/model default. */ export declare const MODEL_DEFAULT_THINKING_LEVEL_SCHEMA: Type.TUnion<[Type.TLiteral<"minimal">, Type.TLiteral<"low">, Type.TLiteral<"medium">, Type.TLiteral<"high">, Type.TLiteral<"xhigh">, Type.TLiteral<"max">, Type.TLiteral<"ultra">]>; //# sourceMappingURL=thinking-level-schema.d.ts.map