import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { BillingPeriodInfo } from "./billing-period-info.js"; import { FeatureUsageSummary } from "./feature-usage-summary.js"; import { PaginationResponse } from "./pagination-response.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type CustomerUsageSummaryResponse = { customerId?: string | undefined; features?: Array | undefined; pagination?: PaginationResponse | undefined; period?: BillingPeriodInfo | undefined; }; /** @internal */ export declare const CustomerUsageSummaryResponse$inboundSchema: z.ZodMiniType; export declare function customerUsageSummaryResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=customer-usage-summary-response.d.ts.map