import type { BinarySchema, PrimitiveSchema } from '../../../../schema/index.js'; export type FormattedPrimitiveJSONSchema = SCHEMA extends BinarySchema ? { type: 'string'; } : { type: SCHEMA['type']; }; export declare const getFormattedPrimitiveJSONSchema: (schema: SCHEMA) => FormattedPrimitiveJSONSchema;