interface IProperty { design?: boolean; data?: Record; onPropertyChanged?(propertyName: string, value: unknown): void; } export default IProperty;