import type { AnyOfSchema } from '../../../../schema/index.js'; import type { ComputeObject } from '../../../../types/computeObject.js'; import type { FormattedValueJSONSchemaRec } from './schema.js'; export type FormattedAnyOfJSONSchema = ComputeObject<{ anyOf: FormattedValueJSONSchemaRec; }>; export declare const getFormattedAnyOfJSONSchema: (schema: SCHEMA) => FormattedAnyOfJSONSchema;