import type { ObjectSchema } from '@becomes/purple-cheetah/types'; import { BCMSEntryContent } from './content'; import { BCMSEntryMeta } from './meta'; export interface BCMSEntryUpdateData { _id: string; templateId: string; status?: string; meta: BCMSEntryMeta[]; content: BCMSEntryContent[]; } export declare const BCMSEntryUpdateDataSchema: ObjectSchema;