import { ISerberPlugin } from '@berish/serber'; import { FileEntity } from '../../entity'; import { RawTypeEnum, IRaw } from '../abstract'; export interface IFullFileEntity extends IRaw { id: string; name: string; createdAt: number; } export declare const fileEntityToFullFileEntityPlugin: ISerberPlugin;