import { JSONSchema4 } from 'json-schema'; /** * When a schema defines a union between an array type and its element type, * we can simplify it to just the array type since in jsii this would be 'any' anyway. * For example: string | string[] becomes just string[] */ export declare function reduceArrayUnions(def: JSONSchema4): JSONSchema4;