import { Coin } from "@cosmjs/amino"; import { TokenLike } from "./tokenLike"; export interface CoinLike { amount: number; token: TokenLike; format(): string; } export declare class Amount implements CoinLike { amount: number; token: TokenLike; constructor(amount: number, token: TokenLike); static fromValue(actualValue: number, token: TokenLike): Amount; format(abbrv?: boolean, hideTicker?: boolean): string; getFractionalValue(): number; get symbol(): string; get denom(): string; add(amount: Amount): Amount; sub(amount: Amount): Amount; mul(amount: Amount): Amount; div(amount: Amount): Amount; toCoins(): ReadonlyArray; } export declare const isAmount: (candidates: ReadonlyArray) => candidates is readonly Amount[];