import * as z from "zod/v4"; import { Result as SafeParseResult } from "../types/fp.js"; import { SDKValidationError } from "./errors/sdkvalidationerror.js"; export type BillingLimits = { maxDeployments: number | null; maxProjects: number | null; maxSeats: number | null; maxCustomDomains: number | null; creditUsd: number | null; seatsIncluded: number | null; }; /** @internal */ export declare const BillingLimits$inboundSchema: z.ZodType; export declare function billingLimitsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=billinglimits.d.ts.map