import { Coupon } from '../types'; /** * Handles coupon calculation * @param amount The amount from the form * @param coupon The coupon object * @returns The new total */ export declare function applyCoupon(amount: number, coupon: Coupon): number;