import { IAuth, ICreatePayout, IGetPayoutStatus, ICreatePayment } from './types'; declare class NOWPaymentsApi { readonly apiKey: string; constructor({ apiKey }: { apiKey: string; }); status(): Promise; auth({ email, password }: IAuth): Promise; createPayout({ withdrawals, token }: ICreatePayout): Promise; getPayoutStatus({ payout_id }: IGetPayoutStatus): Promise; getBalance({ token }: { token: any; }): Promise; createPayment({ price_amount, price_currency, pay_amount, pay_currency, ipn_callback_url, order_id, order_description, purchase_id, payout_address, payout_currency, payout_extra_id, fixed_rate }: ICreatePayment): Promise; } export = NOWPaymentsApi;