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 { MatchedMeter } from "./matched-meter.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type MeterMatchingResult = { error?: ErrorResponse | undefined; matchedMeters?: Array | undefined; status?: DebugTrackerStatus | undefined; }; /** @internal */ export declare const MeterMatchingResult$inboundSchema: z.ZodMiniType; export declare function meterMatchingResultFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=meter-matching-result.d.ts.map