IntProto: {
    typeUrl: string;
    decode(input: Uint8Array | BinaryReader, length?: number): IntProto;
    encode(message: IntProto, writer?: BinaryWriter): BinaryWriter;
    fromAmino(object: IntProtoAmino): IntProto;
    fromAminoMsg(object: IntProtoAminoMsg): IntProto;
    fromPartial(object: {
        int?: string;
    }): IntProto;
    fromProtoMsg(message: IntProtoProtoMsg): IntProto;
    toAmino(message: IntProto): IntProtoAmino;
    toAminoMsg(message: IntProto): IntProtoAminoMsg;
    toProto(message: IntProto): Uint8Array;
    toProtoMsg(message: IntProto): IntProtoProtoMsg;
}