import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Whether to use TLS connection (amqps). Defaults to "false". */ export declare const Tls: { readonly True: "true"; readonly False: "false"; }; /** * Whether to use TLS connection (amqps). Defaults to "false". */ export type Tls = ClosedEnum; export type RabbitMQConfig = { /** * RabbitMQ server address (host:port). */ serverUrl: string; /** * The exchange to publish messages to. */ exchange: string; /** * Whether to use TLS connection (amqps). Defaults to "false". */ tls?: Tls | undefined; }; /** @internal */ export declare const Tls$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Tls$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const RabbitMQConfig$inboundSchema: z.ZodType; /** @internal */ export type RabbitMQConfig$Outbound = { server_url: string; exchange: string; tls?: string | undefined; }; /** @internal */ export declare const RabbitMQConfig$outboundSchema: z.ZodType; export declare function rabbitMQConfigToJSON(rabbitMQConfig: RabbitMQConfig): string; export declare function rabbitMQConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=rabbitmqconfig.d.ts.map