import { Price } from '../order/Price';
/** Details about a withdrawal */
export interface Withdrawal {
    /**  */
    amount: Price;
    /**  */
    country: string;
    /**  */
    date: string;
    /**  */
    orderId: number;
    /**  */
    password: string;
    /**  */
    pdfUrl: string;
    /**  */
    url: string;
    /**  */
    withdrawalId: string;
}
//# sourceMappingURL=Withdrawal.d.ts.map