GasInfo: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): GasInfo;
    encode(message: GasInfo, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: GasInfoAmino): GasInfo;
    fromAminoMsg(object: GasInfoAminoMsg): GasInfo;
    fromPartial(object: {
        gasUsed?: bigint;
        gasWanted?: bigint;
    }): GasInfo;
    fromProtoMsg(message: GasInfoProtoMsg): GasInfo;
    toAmino(message: GasInfo): GasInfoAmino;
    toAminoMsg(message: GasInfo): GasInfoAminoMsg;
    toProto(message: GasInfo): Uint8Array;
    toProtoMsg(message: GasInfo): GasInfoProtoMsg;
}