import type { SetSchema } from '../../../../schema/index.js'; import type { ComputeObject } from '../../../../types/computeObject.js'; import type { FormattedValueJSONSchema } from './schema.js'; export type FormattedSetJSONSchema = ComputeObject<{ type: 'array'; items: FormattedValueJSONSchema; uniqueItems: true; }>; export declare const getFormattedSetJSONSchema: (schema: SCHEMA) => FormattedSetJSONSchema;