import type { Entity } from '../entity'; import type { FileEntity } from '../fileEntity'; export interface IAttributes { id: string; createdAt: Date; updatedAt: Date; [key: string]: any; } export declare function getAttributes(entity: Entity | FileEntity): IAttributes;