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