import Wallet from './wallet';
import Profile from './profile';
import Items from './items';
type Params = {
    authToken: string;
    appSecret: string;
    appId: string;
    baseApiEndpoint: string;
    baseTrustholderEndpoint: string;
};
export default class HandCashCloudAccount {
    wallet: Wallet;
    profile: Profile;
    items: Items;
    constructor(wallet: Wallet, profile: Profile, items: Items);
    static fromAuthToken({ authToken, appSecret, appId, baseApiEndpoint, baseTrustholderEndpoint }: Params): HandCashCloudAccount;
}
export {};
