export declare class BaseModel { static getRelations(): IRelationDefinition[]; static getIdPropertyName(): string; static getIdDatabaseName(): string; } export interface IRelationDefinition { name: string; model: typeof BaseModel; }