import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { PricePrice } from "./price-price.js"; import { SDKValidationError } from "./sdk-validation-error.js"; export type MatchedPrice = { meterId?: string | undefined; price?: PricePrice | undefined; priceId?: string | undefined; status?: string | undefined; }; /** @internal */ export declare const MatchedPrice$inboundSchema: z.ZodMiniType; export declare function matchedPriceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=matched-price.d.ts.map