import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { CommandReceiverBootstrapTarget } from "./commandreceiverbootstraptarget.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CommandBootstrapResponse = { /** * Current customer-facing manager URL */ managerUrl: string; /** * Short-lived command capability token */ token: string; /** * Capability expiry in RFC 3339 format */ expiresAt: Date; /** * Resolved target identity; present only for receiver bootstrap */ target?: CommandReceiverBootstrapTarget | undefined; }; /** @internal */ export declare const CommandBootstrapResponse$inboundSchema: z.ZodType; export declare function commandBootstrapResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=commandbootstrapresponse.d.ts.map