/** * Recursively strip verbosity from a JSON Schema object to minimize token cost: * - Remove all "description" keys (the structure IS the documentation) * - Remove "type":"string" when "const" is present (JSON Schema infers type from const) * Returns a new object — does not mutate the input. */ export declare function stripDescriptions(obj: unknown): unknown; //# sourceMappingURL=minimal-schema.d.ts.map