export declare class BaseEntity<T> {
    /**
     * Id of the entity in UUID format
     */
    id: string;
    /**
     * Date at which the entity was created
     */
    createdAt: Date;
    /**
     * Id of the tenant that owns the entity
     */
    tenantId?: string;
    constructor(object: Partial<T>);
}
