Right now there is no official way to hide props from the docs. Probably we can use something like `@internal` or `@private` to hide them. ```ts export interface Props { /** Some description */ id?: string; /** * @internal * Some description */ privateId?: string } ```