``` TypeScript interface Foo { x: number; } export class Bar { f(): Foo { return null; } } ``` Expected: Return type of public method from exported class has or is using private type 'Foo'. Actual: no error