import { AbstractModel } from './abstract-model'; import { RelationMappings } from 'objection'; import { ContentAuthor } from './content-author'; import { ContentGroup } from './content-group'; export declare class ContentGroupAuthor extends AbstractModel { contentGroupId: number; contentAuthorId: number; contentGroup?: ContentGroup; contentAuthor?: ContentAuthor; constructor(contentGroupId: number, contentAuthorId: number); static tableName: string; static idColumn: string[]; static jsonSchema: { type: string; required: string[]; properties: { contentGroupId: { type: string; }; contentAuthorId: { type: string; }; }; }; static relationMappings: RelationMappings; }