import { GlossaristModel } from './base.js'; export interface BibliographyEntryJson { id?: string | null; reference?: string | null; title?: string | null; link?: string | null; type?: string | null; } export declare class BibliographyEntry extends GlossaristModel { readonly id: string | null; readonly reference: string | null; readonly title: string | null; readonly link: string | null; readonly type: string | null; constructor(data?: BibliographyEntryJson); toJSON(): BibliographyEntryJson; static fromJSON(data: BibliographyEntryJson): BibliographyEntry; } //# sourceMappingURL=bibliography-entry.d.ts.map