import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { DeploymentGroup } from "./deploymentgroup.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type CreateSetupLinkResponse = { /** * The API key token */ token: string; /** * Formatted deployment link */ deploymentLink: string; deploymentGroup: DeploymentGroup; /** * The persisted expiration date for the setup link */ expiresAt: Date | null; }; /** @internal */ export declare const CreateSetupLinkResponse$inboundSchema: z.ZodType; export declare function createSetupLinkResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createsetuplinkresponse.d.ts.map