/**
 * @implements globalThis.HTMLInputElement
 */
export class HTMLInputElement extends HTMLElement implements globalThis.HTMLInputElement {
    set autofocus(arg: any);
    get autofocus(): any;
    set disabled(arg: any);
    get disabled(): any;
    set name(arg: any);
    get name(): any;
    set placeholder(arg: any);
    get placeholder(): any;
    set type(arg: any);
    get type(): any;
}
import { HTMLElement } from "./element.js";
