import type { ObjectSchema } from '@becomes/purple-cheetah/types'; import { BCMSPropChange, BCMSPropChangeGql } from '../../prop'; export interface BCMSWidgetUpdateData { _id: string; label?: string; desc?: string; propChanges?: BCMSPropChange[]; previewImage?: string; previewScript?: string; previewStyle?: string; } export interface BCMSWidgetUpdateDataGql { _id: string; label?: string; desc?: string; propChanges?: BCMSPropChangeGql[]; previewImage?: string; previewScript?: string; previewStyle?: string; } export declare const BCMSWidgetUpdateDataSchema: ObjectSchema;