import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { AttributedToCustomerResult } from "./attributed-to-customer-result.js"; import { CustomerLookupResult } from "./customer-lookup-result.js"; import { FailurePoint } from "./failure-point.js"; import { MeterMatchingResult } from "./meter-matching-result.js"; import { PriceLookupResult } from "./price-lookup-result.js"; import { SDKValidationError } from "./sdk-validation-error.js"; import { SubscriptionLineItemLookupResult } from "./subscription-line-item-lookup-result.js"; export type DebugTracker = { attributedToCustomer?: AttributedToCustomerResult | undefined; customerLookup?: CustomerLookupResult | undefined; failurePoint?: FailurePoint | undefined; meterMatching?: MeterMatchingResult | undefined; priceLookup?: PriceLookupResult | undefined; subscriptionLineItemLookup?: SubscriptionLineItemLookupResult | undefined; }; /** @internal */ export declare const DebugTracker$inboundSchema: z.ZodMiniType; export declare function debugTrackerFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=debug-tracker.d.ts.map