export declare class Author { name: string; constructor(name: string); } export declare class Book { title: Author; private author_; constructor(title: Author); set author(author: Author); coauthor: Author; getTitle(author: Author): Author; } declare const myBook: Book; export default myBook;