/** * Applies value to HTML element and triggers react change event * @param {HTMLElement} target - the HTML element to be changed * @param {any} value - the value to apply */ export default function dispatchChange(target: HTMLElement, value: any): void;