import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { Status } from "./status.js"; import { UsageRecordSyncEntry } from "./usage-record-sync-entry.js"; export type UsageRecordResponse = { amount?: number | undefined; createdAt?: Date | undefined; createdBy?: string | undefined; currency?: string | undefined; customerExternalId?: string | undefined; customerId?: string | undefined; environmentId?: string | undefined; id?: string | undefined; periodEnd?: Date | undefined; periodStart?: Date | undefined; planId?: string | undefined; quantity?: number | undefined; status?: Status | undefined; subscriptionId?: string | undefined; synced?: boolean | undefined; syncs?: { [k: string]: UsageRecordSyncEntry; } | undefined; tenantId?: string | undefined; updatedAt?: Date | undefined; updatedBy?: string | undefined; }; /** @internal */ export declare const UsageRecordResponse$inboundSchema: z.ZodMiniType; export declare function usageRecordResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=usage-record-response.d.ts.map