import type { ObjectSchema } from '@becomes/purple-cheetah/types'; import { BCMSPropChange, BCMSPropChangeGql } from '../../prop'; export interface BCMSGroupUpdateData { _id: string; label?: string; desc?: string; propChanges?: BCMSPropChange[]; } export declare const BCMSGroupUpdateDataSchema: ObjectSchema; export interface BCMSGroupUpdateDataGql { _id: string; label?: string; desc?: string; propChanges?: BCMSPropChangeGql[]; }