/** * Fires when properties are updated in the store. * @type {string} */ export declare const UPDATE = "update"; /** * Fires when the the input or any of the entries of the component change * @type {string} */ export declare const CHANGE = "change"; /** * Represents an event to commit and submit the value, triggered by selecting a value from the dropdown, or * pressing enter */ export declare const SUBMIT = "submit"; /** * Represents the component losing focus to an element not inside the top-level container */ export declare const BLUR = "blur";