/** * Checks target if it is native input * @param target - HTML element or string * @returns true if target is an input element, false otherwise */ export declare function isNativeInput(target: any): target is HTMLInputElement | HTMLTextAreaElement;