Your misunderstanding comes from what's meant by "hide information". What whoever you heard this from meant was that implementing an interface allows a class to separate its forward-facing methods from its internal implementations.
This is also called "encapsulation", and the benefit of it is to allow the designer to change an object's internal mechanisms without disrupting existing code that was written around it's public interface, making it easier to change things. Thus, you'll frequently hear interfaces described as a "contract" because it creates an implicit agreement between the users and the implementers of a class that its forward-facing methods will remain consistent. And because multiple classes can implement a single interface, one component can be easily replaced with a different one, as long as it implements the same public interface. Grady Booch, the author of a well-respected book on object-oriented design, defines encapsulation as follows:
the process of compartmentalizing the elements of an abstraction that constitute its structure and behavior; encapsulation serves to separate the contractual interface of an abstraction and its implementation.
It isn't necessary that the consumer of an object know or be exposed to how the designer of that object implemented its functionality under the covers. Think of your microwave: all you have to do to use a microwave to make a snack is push a few buttons on the front. That's the public interface of your microwave. It isn't necessary to understand the scientific principles that are behind its design just to make a bag of popcorn. The benefit to interfaces here is that they reduce complexity and make it easier for other developers to make use of your classes.
So, referring back to the example given in your question, you aren't supposed to be restricted from using the Person class, but you might be limited in the methods exposed by that class that you are able to access. For example, the Person class might store a person's names internally in separate FirstName and LastName fields, but only publically expose one Name property that returns the concatenation of both of those private name fields.
But object-oriented design and terminology is fairly complicated. I strongly recommend that you search out a good book on the concepts and read it carefully. You'll be a better programmer because of it.