このエラーの原因として、次のいずれかのことが考えられます。
Type MyType
Public X As Integer ' Illegal: Public keyword is not allowed here.
End Type
キーワード Dim、Public、Private、Static を削除してください。
Class MyClass
Dim X As Integer ' Illegal: Dim keyword is not allowed here.
End Class
キーワード Dim を削除してください。