import { Price } from '../order/Price';
/** Information about a Withdrawal entry */
export interface WithdrawalDetail {
    /**  */
    description: string;
    /**  */
    domain: string;
    /**  */
    quantity: string;
    /**  */
    totalPrice: Price;
    /**  */
    unitPrice: Price;
    /**  */
    withdrawalDetailId: string;
}
//# sourceMappingURL=WithdrawalDetail.d.ts.map