import { Price } from '../order/Price';
/** Information about a Bill entry */
export interface RefundDetail {
    /**  */
    description: string;
    /**  */
    domain: string;
    /**  */
    quantity: string;
    /**  */
    reference: string;
    /**  */
    refundDetailId: string;
    /**  */
    refundId: string;
    /**  */
    totalPrice: Price;
    /**  */
    unitPrice: Price;
}
//# sourceMappingURL=RefundDetail.d.ts.map