import { AbstractModel } from './abstract-model'; export declare class ContentCollection extends AbstractModel { private static BOOK_SEPARATOR; id: number; title?: string; bookNames: string; static tableName: string; get referencedBooks(): string[]; }