import { Fare } from "../fares/types.js"; //#region source/helpers/fares.d.ts /** * Retrieves the fare price from a Fare object. * * @param f - The Fare object to retrieve the price from. */ declare const getFarePrice: (f: Fare) => number; /** * Sorts two Fare objects by their price in ascending order. * * @param a - The first Fare object. * @param b - The second Fare object. */ declare const sortByPrice: (a: Fare, b: Fare) => number; //#endregion export { getFarePrice, sortByPrice };