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