import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { DebugTrackerStatus } from "./debug-tracker-status.js"; import { ErrorResponse } from "./error-response.js"; import { MeterUsageAttribution } from "./meter-usage-attribution.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type AttributedToCustomerResult = { error?: ErrorResponse | undefined; meterUsage?: MeterUsageAttribution | undefined; status?: DebugTrackerStatus | undefined; }; /** @internal */ export declare const AttributedToCustomerResult$inboundSchema: z.ZodMiniType; export declare function attributedToCustomerResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=attributed-to-customer-result.d.ts.map