/** * Dispatches a native input event with the given value * * There no ways to dispatch a native input event with the given value without setting it via the descriptor; * this is the utility function to do that * * If you dispatch by traditional way (e.g. `input.value = 'value'; input.dispatchEvent(new Event('input'))`), * the `onChange` and `change` event will not be triggered * * @param input - The input element, either `HTMLInputElement` or `HTMLTextAreaElement` * * @param value - The value to set, is string */ export declare const dispatchNativeInputValueWithEvent: (input: Element, value: Element["value"]) => void;