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