///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
///
import type { ObjectSchema } from '@becomes/purple-cheetah/types';
import { Schema } from 'mongoose';
import type { BCMSPropParsed, BCMSPropValue } from '../../prop';
export interface BCMSEntryMeta {
lng: string;
props: BCMSPropValue[];
}
export declare const BCMSEntryMetaFSDBSchema: ObjectSchema;
export declare const BCMSEntryMetaMongoDBSchema: Schema, {}, {}, {}, {}, "type", {
props: any[];
lng: string;
}>;
export interface BCMSEntryParsedMeta {
[lng: string]: BCMSPropParsed;
}