import type { TupleSchema } from '../../../../schema/index.js'; import type { ComputeObject } from '../../../../types/computeObject.js'; import type { FormattedValueJSONSchemaRec } from './schema.js'; export type FormattedTupleJSONSchema = ComputeObject<{ type: 'array'; items: FormattedValueJSONSchemaRec; minLength: SCHEMA['elements']['length']; maxLength: SCHEMA['elements']['length']; }>; export declare const getFormattedTupleJSONSchema: (schema: SCHEMA) => FormattedTupleJSONSchema;