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