import type { ObjectSchema } from '@becomes/purple-cheetah/types'; import { BCMSPropDataParsed, BCMSPropValue } from './main'; export interface BCMSPropWidgetData { _id: string; } export interface BCMSPropWidgetDataParsed { [key: string]: BCMSPropDataParsed; } export declare const BCMSPropWidgetDataSchema: ObjectSchema; export interface BCMSPropValueWidgetData { _id: string; props: BCMSPropValue[]; }