///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
import { FSDBEntity } from '@becomes/purple-cheetah-mod-fsdb/types';
import type { ObjectSchema } from '@becomes/purple-cheetah/types';
import { Schema } from 'mongoose';
import { BCMSEntryContent } from './content';
import { BCMSEntryMeta } from './meta';
export interface BCMSEntry extends FSDBEntity {
cid: string;
templateId: string;
userId: string;
status?: string;
meta: BCMSEntryMeta[];
content: BCMSEntryContent[];
}
export declare const BCMSEntryFSDBSchema: ObjectSchema;
export declare const BCMSEntryMongoDBSchema: Schema, {}, {}, {}, {}, "type", {
userId: string;
templateId: string;
meta: import("mongoose").Types.DocumentArray<{
props: any[];
lng: string;
}>;
content: import("mongoose").Types.DocumentArray<{
lng: string;
nodes: any[];
planeText?: string | undefined;
}>;
cid: string;
_id?: string | undefined;
createdAt?: number | undefined;
updatedAt?: number | undefined;
status?: string | undefined;
}>;