export declare class BaseEntity {
    active: boolean;
    companyId: string;
    containerId: string;
    createdAt: Date;
    id: string;
    updatedAt: Date;
    constructor(data?: Partial<BaseEntity>);
}
