import type { BCMSEntryContentParsedItem } from '@bcms/types'; import type { ObjectSchema } from '@becomes/purple-cheetah/types'; import type { BCMSPropParsed } from './main'; export interface BCMSPropEntryPointerData { templateId: string; entryIds: string[]; displayProp: string; } export interface BCMSPropEntryPointerDataParsed { _id: string; cid: string; createdAt: number; updatedAt: number; templateId: string; userId: string; status?: string; meta: { [lng: string]: BCMSPropParsed; }; content: { [lng: string]: BCMSEntryContentParsedItem[]; }; } export declare const BCMSPropEntryPointerDataSchema: ObjectSchema; export interface BCMSPropValueEntryPointer { tid: string; eid: string; }