export interface EntityData {
    id?: bigint;
    updatedAt: Date;
    createdAt: Date;
}
export declare class Entity {
    id?: bigint;
    updatedAt: Date;
    readonly createdAt: Date;
    constructor(data: EntityData);
}
