import { AptosClient } from "aptos"; export declare function getCoinType(aptosClient: AptosClient, coinTypeStr: string): Promise; export declare function getCoinResourceType(coinTypeStr: string): string; export declare class CoinType { readonly coinType: string; readonly name: string; readonly symbol: string; readonly decimals: number; protected constructor(coinType: string, name: string, symbol: string, decimals: number); static fromMoveCoin(aptosClient: AptosClient, coinType: string): Promise; static coinResourceTag(coinType: string): string; }