The reason that pointers to incomplete types are legal is precisely because the compiler doesn't need to know their size.
The reason that you cannot declare an object of incomplete type is, as you've mentioned, because the compiler doesn't know how large the object is and therefore can't allocate space for it. When declaring a pointer to an incomplete type, though, the size is known because typically all pointers on a machine have the same size.
Moreover, you don't need to know how large the object is when declaring a pointer to an object of incomplete type. However, if you try using an object of incomplete type, such as by following that pointer or trying to instantiate an object of that type, then the compiler will give you an error.
In short, the pointer is legal because it can be created without the compiler knowing the size of what's being pointed at. If you actually need to know the size or layout of that object by using the pointer, though, the compiler will need to have more information about the type.