import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ChannelConnectionsControllerCreateChannelConnectionRequest = { /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; createChannelConnectionRequestDto: components.CreateChannelConnectionRequestDto; }; export type ChannelConnectionsControllerCreateChannelConnectionResponse = { headers: { [k: string]: Array; }; result: components.GetChannelConnectionResponseDto; }; /** @internal */ export type ChannelConnectionsControllerCreateChannelConnectionRequest$Outbound = { "idempotency-key"?: string | undefined; CreateChannelConnectionRequestDto: components.CreateChannelConnectionRequestDto$Outbound; }; /** @internal */ export declare const ChannelConnectionsControllerCreateChannelConnectionRequest$outboundSchema: z.ZodType; export declare function channelConnectionsControllerCreateChannelConnectionRequestToJSON(channelConnectionsControllerCreateChannelConnectionRequest: ChannelConnectionsControllerCreateChannelConnectionRequest): string; /** @internal */ export declare const ChannelConnectionsControllerCreateChannelConnectionResponse$inboundSchema: z.ZodType; export declare function channelConnectionsControllerCreateChannelConnectionResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=channelconnectionscontrollercreatechannelconnection.d.ts.map