ExchangeRateTuple: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): ExchangeRateTuple;
    encode(message: ExchangeRateTuple, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: ExchangeRateTupleAmino): ExchangeRateTuple;
    fromAminoMsg(object: ExchangeRateTupleAminoMsg): ExchangeRateTuple;
    fromPartial(object: {
        denom?: string;
        exchangeRate?: string;
    }): ExchangeRateTuple;
    fromProtoMsg(message: ExchangeRateTupleProtoMsg): ExchangeRateTuple;
    toAmino(message: ExchangeRateTuple): ExchangeRateTupleAmino;
    toProto(message: ExchangeRateTuple): Uint8Array;
    toProtoMsg(message: ExchangeRateTuple): ExchangeRateTupleProtoMsg;
}