export interface ParsedAuthor { fullName: string; email?: string; } export declare function parseAuthor(author: string): ParsedAuthor;