import type { RecordSchema } from '../../../../schema/index.js'; import type { ComputeObject } from '../../../../types/computeObject.js'; import type { FormattedValueJSONSchema } from './schema.js'; export type FormattedRecordJSONSchema = ComputeObject<{ type: 'object'; propertyNames: FormattedValueJSONSchema; additionalProperties: FormattedValueJSONSchema; }>; export declare const getFormattedRecordJSONSchema: (schema: SCHEMA) => FormattedRecordJSONSchema;