import type * as ElevenLabs from "../../api/index"; import * as core from "../../core"; import * as serializers from "../index"; import { AuthConnectionLocator } from "./AuthConnectionLocator"; import { LiteralJsonSchemaProperty } from "./LiteralJsonSchemaProperty"; import { QueryParamsJsonSchema } from "./QueryParamsJsonSchema"; import { WebhookToolApiSchemaConfigInputContentType } from "./WebhookToolApiSchemaConfigInputContentType"; import { WebhookToolApiSchemaConfigInputMethod } from "./WebhookToolApiSchemaConfigInputMethod"; import { WebhookToolApiSchemaConfigInputRequestHeadersValue } from "./WebhookToolApiSchemaConfigInputRequestHeadersValue"; export declare const WebhookToolApiSchemaConfigInput: core.serialization.ObjectSchema; export declare namespace WebhookToolApiSchemaConfigInput { interface Raw { request_headers?: Record | null; url: string; method?: WebhookToolApiSchemaConfigInputMethod.Raw | null; path_params_schema?: Record | null; query_params_schema?: QueryParamsJsonSchema.Raw | null; request_body_schema?: serializers.ObjectJsonSchemaPropertyInput.Raw | null; content_type?: WebhookToolApiSchemaConfigInputContentType.Raw | null; auth_connection?: AuthConnectionLocator.Raw | null; } }