export declare type Affiliation = { addrLines: { addrLine1: string; addrLine2: string; addrLine3: string; }[]; affId: number; country: string; domainName: string; sup: number; }; export declare type Editor = { givenName: string; surName: string; }; export declare type Author = { email: string; givenName: string; surName: string; orcid: string; affSup: { affId: string; }[]; userId: string; }; export declare type SpecialIssueDetails = { title: string; url: string; }; export declare type Article = { subject: string; volume: number; articleId: string; doi: string; articleTitle: string; authors: Author[]; affiliations: Affiliation[]; is_special_issue: number; special_issue_details: SpecialIssueDetails; academicEditors: Editor[]; guest_editors: Editor[]; dateReceived: string; dateRevised: string; dateAccepted: string; datePublished: string; copyrightHolder: string; license: string; };