import { MediaManagerAP } from "./MediaManagerAP"; declare const _default: { id: { type: string; autoIncrement: boolean; primaryKey: boolean; }; key: { type: string; }; value: { type: string; }; isPublic: { type: string; }; parent: { model: string; }; createdAt: { type: string; autoCreatedAt: boolean; }; updatedAt: { type: string; autoUpdatedAt: boolean; }; }; export default _default; export interface MediaManagerMetaAP { id: string; key?: string; value?: Record; isPublic?: boolean; parent?: MediaManagerAP; }