import * as z from "zod/v3"; import { AuthDto, AuthDto$Outbound } from "./authdto.js"; import { WorkspaceDto, WorkspaceDto$Outbound } from "./workspacedto.js"; export type UpdateChannelConnectionRequestDto = { workspace: WorkspaceDto; auth: AuthDto; }; /** @internal */ export type UpdateChannelConnectionRequestDto$Outbound = { workspace: WorkspaceDto$Outbound; auth: AuthDto$Outbound; }; /** @internal */ export declare const UpdateChannelConnectionRequestDto$outboundSchema: z.ZodType; export declare function updateChannelConnectionRequestDtoToJSON(updateChannelConnectionRequestDto: UpdateChannelConnectionRequestDto): string; //# sourceMappingURL=updatechannelconnectionrequestdto.d.ts.map