import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { CustomerSeat, CustomerSeat$Outbound } from "./customerseat.js"; /** * Sent when a customer seat is claimed. * * @remarks * * This event is triggered when a customer accepts the seat invitation and claims their access. */ export type WebhookCustomerSeatClaimedPayload = { type: "customer_seat.claimed"; timestamp: Date; data: CustomerSeat; }; /** @internal */ export declare const WebhookCustomerSeatClaimedPayload$inboundSchema: z.ZodMiniType; /** @internal */ export type WebhookCustomerSeatClaimedPayload$Outbound = { type: "customer_seat.claimed"; timestamp: string; data: CustomerSeat$Outbound; }; /** @internal */ export declare const WebhookCustomerSeatClaimedPayload$outboundSchema: z.ZodMiniType; export declare function webhookCustomerSeatClaimedPayloadToJSON(webhookCustomerSeatClaimedPayload: WebhookCustomerSeatClaimedPayload): string; export declare function webhookCustomerSeatClaimedPayloadFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=webhookcustomerseatclaimedpayload.d.ts.map