import { JsonSchema, UISchemaElement } from '@jsonforms/core'; /** * Determines if the given UI schema control is a JSON array control. * * Matches arrays whose `items` is a plain object schema with no fixed * `properties` (i.e. a free-form map / dynamic-shape object), as opposed to * structured object arrays (which carry `properties`). */ export declare function isJsonArrayControl(uischema: UISchemaElement, schema: JsonSchema): boolean;