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"; export type SeatsList = { /** * List of seats */ seats: Array; /** * Number of available seats */ availableSeats: number; /** * Total number of seats for the subscription */ totalSeats: number; }; /** @internal */ export declare const SeatsList$inboundSchema: z.ZodMiniType; export declare function seatsListFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=seatslist.d.ts.map