import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { CustomerUsageSummaryResponse } from "./customer-usage-summary-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { SubscriptionResponse } from "./subscription-response.js"; export type TenantBillingUsage = { subscriptions?: Array | undefined; usage?: CustomerUsageSummaryResponse | undefined; }; /** @internal */ export declare const TenantBillingUsage$inboundSchema: z.ZodMiniType; export declare function tenantBillingUsageFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=tenant-billing-usage.d.ts.map