import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import * as serializers from "../index"; import { RequiredConstraints } from "./RequiredConstraints"; export declare const ObjectJsonSchemaPropertyOutput: core.serialization.ObjectSchema; export declare namespace ObjectJsonSchemaPropertyOutput { interface Raw { type?: "object" | null; required?: string[] | null; description?: string | null; properties?: Record | null; required_constraints?: RequiredConstraints.Raw | null; } }