export declare const formatPriceByMode: (
  price: number | undefined,
  priceMode: number,
  personCount: number,
  duration: number,
  perPersonLabel: string,
  perNightLabel: string,
  perPersonPerNightLabel: string,
  currencyCode: string
) => string | undefined;
