import type { ListSchema } from '../../../../schema/index.js'; import type { ComputeObject } from '../../../../types/computeObject.js'; import type { FormattedValueJSONSchema } from './schema.js'; export type FormattedListJSONSchema = ComputeObject<{ type: 'array'; items: FormattedValueJSONSchema; }>; export declare const getFormattedListJSONSchema: (schema: SCHEMA) => FormattedListJSONSchema;