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<serializers.ObjectJsonSchemaPropertyOutput.Raw, ElevenLabs.ObjectJsonSchemaPropertyOutput>;
export declare namespace ObjectJsonSchemaPropertyOutput {
    interface Raw {
        type?: "object" | null;
        required?: string[] | null;
        description?: string | null;
        properties?: Record<string, serializers.ObjectJsonSchemaPropertyOutputPropertiesValue.Raw> | null;
        required_constraints?: RequiredConstraints.Raw | null;
    }
}
