import { Price } from '../order/Price';
/** Credit balance applied on an Order */
export interface CreditBalance {
    /** Amount applied from the balance */
    amount: Price;
    /** Credit balance name */
    balanceName: string;
}
//# sourceMappingURL=CreditBalance.d.ts.map