import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AzureServiceBusConfig = { /** * The name of the Azure Service Bus queue or topic to publish messages to. */ name: string; }; /** @internal */ export declare const AzureServiceBusConfig$inboundSchema: z.ZodType; /** @internal */ export type AzureServiceBusConfig$Outbound = { name: string; }; /** @internal */ export declare const AzureServiceBusConfig$outboundSchema: z.ZodType; export declare function azureServiceBusConfigToJSON(azureServiceBusConfig: AzureServiceBusConfig): string; export declare function azureServiceBusConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=azureservicebusconfig.d.ts.map