import { AssetApi } from '../api/asset'; import { Asset } from '../api/types'; import { Rpc } from '../rpc/rpc'; export declare class AssetApiImp implements AssetApi { private rpc; constructor(rpc: Rpc); getAccount(): Promise; getPublicKey(): Promise; send(args: { to: string; asset: Asset; amount: string; }): Promise; sendV2(args: { to: string; asset: Asset; amount: string; }): Promise; approve(args: { asset: Asset; from: string; to: string; amount: number | string; }): Promise; getAllowance(args: { asset: Asset; from: string; to: string; }): Promise; }