export interface PublicationInterface {
    name: string;
    publisher: string;
    issue: Date;
    keywords?: string[];
    type: 'newspaper' | 'magazine';
}
//# sourceMappingURL=Publication.d.ts.map