import { AuthorBase } from "../types"; export declare class Author implements AuthorBase { readonly name: string; readonly id: string; readonly url: string; constructor(name: string, id: string, url: string); }