import { ISerberPlugin } from '@berish/serber'; import { Entity } from '../../entity'; import { IRaw, RawTypeEnum } from '../abstract'; export interface IFullEntity extends IRaw { id: string; className: string; createdAt: number; updatedAt: number; [key: string]: any; } export declare const entityToFullEntityPlugin: ISerberPlugin;