QueryTotalSupplyResponse: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): QueryTotalSupplyResponse;
    encode(message: QueryTotalSupplyResponse, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: QueryTotalSupplyResponseAmino): QueryTotalSupplyResponse;
    fromAminoMsg(object: QueryTotalSupplyResponseAminoMsg): QueryTotalSupplyResponse;
    fromPartial(object: {
        pagination?: {
            nextKey?: Uint8Array;
            total?: bigint;
        };
        supply?: {
            amount?: string;
            denom?: string;
        }[];
    }): QueryTotalSupplyResponse;
    fromProtoMsg(message: QueryTotalSupplyResponseProtoMsg): QueryTotalSupplyResponse;
    toAmino(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseAmino;
    toAminoMsg(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseAminoMsg;
    toProto(message: QueryTotalSupplyResponse): Uint8Array;
    toProtoMsg(message: QueryTotalSupplyResponse): QueryTotalSupplyResponseProtoMsg;
}