import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerSeat } from "./customerseat.js"; /** * Response after successfully claiming a seat. */ export type CustomerSeatClaimResponse = { seat: CustomerSeat; /** * Session token for immediate customer portal access */ customerSessionToken: string; }; /** @internal */ export declare const CustomerSeatClaimResponse$inboundSchema: z.ZodMiniType; export declare function customerSeatClaimResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customerseatclaimresponse.d.ts.map