import { Timestamp } from 'typeorm'; import { GenericEntityLexic } from './GenericEntityLexic'; export declare class TimedEntityWithLexicId extends GenericEntityLexic { createdAt: Timestamp; updatedAt: Timestamp; deletedAt: Timestamp; }