import { Money, Url } from "../builtins"; export type StorePageInfoQuery = { url: string; fetchLatestPrice?: boolean | null; }; export interface StorePageInfoResponse { name: string | null; url: Url | null; brand: string | null; categories: string[]; price: Money | null; } //# sourceMappingURL=storePageInfo.d.ts.map