import { BaseEntity } from './base.entity';
export declare class UserModifiableEntity<T> extends BaseEntity<T> {
    /**
     * Id of the user who created the entity
     */
    createdBy?: string;
    /**
     * Date at which the entity was last modified
     */
    lastUpdatedAt?: string;
    /**
     * Id of the user who last updated the entity
     */
    lastUpdatedBy?: string;
}
