import { TokenInfo } from '@tonic-foundation/token-list';
export * from './jsonrpc/types';
export * from './amms/types';
export interface AccountStorageBalance {
    total: string;
    available: string;
}
export declare type UserTokensMap = Map<string, {
    existing: boolean;
    data: AccountStorageBalance | null;
}>;
export declare type TokenMap = Map<string, TokenInfo>;
