import { Coin } from "@cosmjs/amino"; import { LcdApiArray, LcdClient } from "./lcdclient"; export interface TotalSupplyAllResponse { readonly height: string; readonly result: LcdApiArray; } export interface TotalSupplyResponse { readonly height: string; /** The amount */ readonly result: string; } export interface SupplyExtension { readonly supply: { readonly totalAll: () => Promise; readonly total: (denom: string) => Promise; }; } export declare function setupSupplyExtension(base: LcdClient): SupplyExtension;