import { AbstractModel } from './abstract-model'; import { User } from './user'; import { RelationMappings } from 'objection'; export declare class ContentAuthor extends AbstractModel { userId: number; share: number; readonly id: number; user?: User; constructor(userId: number, share?: number); static tableName: string; static jsonSchema: { type: string; required: string[]; properties: { id: { type: string; }; share: { type: string; }; userId: { type: string; }; }; }; static relationMappings: RelationMappings; }