import { PropertyOption } from '@gspwidget/widget-devkit'; export interface PropertyChangeEvent { propName: string; value: any; } export interface PropsAndValues { props: PropertyOption[]; propValues: object; } export interface CEContext { extra?: any; } export interface I18nDataField { name: string; label: string; i18nLabel: any | string; } export interface CEDF { name: string; label: any | string; }