import { AnyCurrency, IsoCountry, PriceType, TimestampedPrice } from "../builtins"; export interface PriceHistoryLookupQuery { store: "amazon" | string; sku: string; type: PriceType; country: IsoCountry; } export interface PriceHistoryLookupResponse { store: string; sku: string; type: PriceType; currency: AnyCurrency; prices: TimestampedPrice[]; } //# sourceMappingURL=priceHistoryLookup.d.ts.map