import { CreateOrder, Offer, SeatMap } from "@duffel/api/types";
import { ServicePriceMapById } from "./getServicePriceMapById";
export declare const getTotalAmountForServices: (offer: Offer, selectedServices: CreateOrder["services"], seatMaps?: SeatMap[]) => number;
export declare const getTotalAmountForServicesWithPriceMap: (servicePriceMap: ServicePriceMapById, selectedServices: CreateOrder["services"], seatMaps?: SeatMap[]) => number;
