import { CountryEnum } from './CountryEnum';
import { Price } from '../order/Price';
/** Rates of a given destination */
export interface DestinationRates {
    /** The country full name */
    country: string;
    /** The country 2-letters code */
    countryCode: CountryEnum;
    /** Credits consumed by sending one SMS towards the given destination */
    credit: number;
    /** Price of one SMS sent towards the given destination */
    price: Price;
}
//# sourceMappingURL=DestinationRates.d.ts.map