/**
 * Prices for a card in various treatments.
 */
export type ScryfallPrices = {
  usd: string | null;
  usd_foil: string | null;
  usd_etched: string | null;
  eur: string | null;
  eur_foil: string | null;
  tix: string | null;
};
