/** * Defines a citation for words. */ export default class Citation { readonly source: string; readonly cite: string; /** * Constructs a new citation. * * @param source {string} The source of the citation. * @param cite {string} The citation. */ constructor(source: string, cite: string); }