import { registerSettingComponent } from './property-setting/property-item'; /** * properties register: common, widget, custom, event * Map */ declare const commonProperties: { [type: string]: string; }; /** * register common properties * @param uniquePropertyName * @param componentName */ declare function registerCommonProperty(uniquePropertyName: string, componentName: string): void; declare function registerCustomProperty(uniquePropertyName: string, componentName: string): void; /** * register widget properties * @param uniquePropertyName * @param componentName */ declare function registerWidgetProperty(uniquePropertyName: string, componentName: string): void; declare function registerEventProperty(uniquePropertyName: string, componentName: string): void; declare function isRegisteredCommonProperty(uniquePropertyName: string): boolean; declare function isRegisteredWidgetProperty(uniquePropertyName: string): boolean; declare function isRegisteredEventProperty(uniquePropertyName: string): boolean; declare function isRegisteredCustomProperty(uniquePropertyName: string): boolean; declare function isRegisteredProperties(uniquePropertyName: string): boolean; export { commonProperties, registerCustomProperty, registerCommonProperty, registerEventProperty, registerWidgetProperty, registerSettingComponent, isRegisteredProperties, isRegisteredCommonProperty, isRegisteredCustomProperty, isRegisteredEventProperty, isRegisteredWidgetProperty, };