import type * as ElevenLabs from "../../api/index";
import * as core from "../../core";
import type * as serializers from "../index";
import { LiteralJsonSchemaProperty } from "./LiteralJsonSchemaProperty";
export declare const QueryParamsJsonSchema: core.serialization.ObjectSchema<serializers.QueryParamsJsonSchema.Raw, ElevenLabs.QueryParamsJsonSchema>;
export declare namespace QueryParamsJsonSchema {
    interface Raw {
        properties: Record<string, LiteralJsonSchemaProperty.Raw>;
        required?: string[] | null;
    }
}
