import type { TSchema, TProperties } from '../../type/index.mjs'; /** * Used by Object and Record Types. The entries are derived from the known * properties obtained from 'properties' and 'patternProperties' respectively. */ export declare function FromAdditionalProperties(context: TProperties, entries: [RegExp, TSchema][], additionalProperties: TSchema, value: Record): unknown;