export declare abstract class BaseModel { createdDateTime: Date; createdBy: string; modifiedDateTime?: Date; modifiedBy?: string; deletedDateTime?: Date; deletedBy?: string; }