export declare const isHtmlInputElement: (e: Element) => e is HTMLInputElement;
export declare const isHtmlSelectElement: (e: Element) => e is HTMLSelectElement;
export declare const isHtmlOption: (e: Element) => e is HTMLOptionElement;
export declare const isHtmlOptgroup: (e: Element) => e is HTMLOptGroupElement;
