import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import * as serializers from "../index"; import { ArrayJsonSchemaPropertyInputPropertyKind } from "./ArrayJsonSchemaPropertyInputPropertyKind"; export declare const ArrayJsonSchemaPropertyInput: core.serialization.ObjectSchema; export declare namespace ArrayJsonSchemaPropertyInput { interface Raw { property_kind?: ArrayJsonSchemaPropertyInputPropertyKind.Raw | null; description?: string | null; dynamic_variable?: string | null; constant_value?: unknown[] | null; is_omitted?: boolean | null; type?: "array" | null; items?: serializers.ArrayJsonSchemaPropertyInputItems.Raw | null; } }