/**
 * Base abstract entity for all entities
 */
export declare abstract class BaseEntity {
    id: string;
    created_at: Date;
    updated_at: Date;
}
