import * as z from "zod/v4"; export type CommandBootstrapRequestReceiver = { /** * Unique identifier for the deployment. */ deploymentId: string; role: "receiver"; target: string; }; export type CommandBootstrapRequestSender = { /** * Unique identifier for the deployment. */ deploymentId: string; role: "sender"; }; export type CommandBootstrapRequest = CommandBootstrapRequestSender | CommandBootstrapRequestReceiver; /** @internal */ export type CommandBootstrapRequestReceiver$Outbound = { deploymentId: string; role: "receiver"; target: string; }; /** @internal */ export declare const CommandBootstrapRequestReceiver$outboundSchema: z.ZodType; export declare function commandBootstrapRequestReceiverToJSON(commandBootstrapRequestReceiver: CommandBootstrapRequestReceiver): string; /** @internal */ export type CommandBootstrapRequestSender$Outbound = { deploymentId: string; role: "sender"; }; /** @internal */ export declare const CommandBootstrapRequestSender$outboundSchema: z.ZodType; export declare function commandBootstrapRequestSenderToJSON(commandBootstrapRequestSender: CommandBootstrapRequestSender): string; /** @internal */ export type CommandBootstrapRequest$Outbound = CommandBootstrapRequestSender$Outbound | CommandBootstrapRequestReceiver$Outbound; /** @internal */ export declare const CommandBootstrapRequest$outboundSchema: z.ZodType; export declare function commandBootstrapRequestToJSON(commandBootstrapRequest: CommandBootstrapRequest): string; //# sourceMappingURL=commandbootstraprequest.d.ts.map