import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AzureServiceBusCredentials = { /** * The connection string for the Azure Service Bus namespace. */ connectionString: string; }; /** @internal */ export declare const AzureServiceBusCredentials$inboundSchema: z.ZodType; /** @internal */ export type AzureServiceBusCredentials$Outbound = { connection_string: string; }; /** @internal */ export declare const AzureServiceBusCredentials$outboundSchema: z.ZodType; export declare function azureServiceBusCredentialsToJSON(azureServiceBusCredentials: AzureServiceBusCredentials): string; export declare function azureServiceBusCredentialsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=azureservicebuscredentials.d.ts.map