import { Base } from '../base';
import { UserBalanceType } from '../../types/user';
export declare class User extends Base {
    getBalance(): Promise<UserBalanceType>;
    getApiKey(): Promise<string>;
    changeApiKey(): Promise<string>;
}
