declare type ValueFunc = (prev: string) => string; declare const setNativeInputValue: ( value: string | ValueFunc, inputDOM: HTMLInputElement | HTMLTextAreaElement, prototypeDOM?: HTMLInputElement | HTMLTextAreaElement, ) => void; export default setNativeInputValue;