import { Price } from '../order/Price';
/** Information about withdrawal entry */
export interface ReversableBillDetail {
    /**  */
    description: string;
    /**  */
    domain: string;
    /**  */
    quantity: string;
    /**  */
    reference: string;
    /**  */
    reverseBillDetailId: string;
    /**  */
    reverseBillId: string;
    /**  */
    totalPrice: Price;
    /**  */
    unitPrice: Price;
}
//# sourceMappingURL=ReversableBillDetail.d.ts.map