/** @typedef {import('../core/CustomElement.js').default} CustomElement */ /** @typedef {'align'|'useMap'} DeprecatedHTMLInputElementProperties */ /** @typedef {HTMLInputElement|HTMLTextAreaElement|HTMLSelectElement} HTMLControlElement */ /** * Adds form-control behavior and wiring to an internal control element. * @param {ReturnType} Base */ export default function ControlMixin(Base: ReturnType): typeof import("../core/CustomElement.js").default & import("../core/CustomElement.js").Class<{ delegatesFocus: boolean; }, any[]> & import("../core/CustomElement.js").Class<{ disabled: boolean; focused: boolean; hovered: boolean; pressed: boolean; _lastInteraction: "key" | "mouse" | "touch" | "pen"; _hovered: boolean; _focused: boolean; _focusedSynthetic: boolean; _keyPressed: boolean; _keyReleased: boolean; _pointerPressed: boolean; stateLayer: boolean; }, any[]> & import("../core/CustomElement.js").Class<{ disabledState: boolean; hoveredState: boolean; focusedState: boolean; pressedState: boolean; touchedState: boolean; pointedState: boolean; }, any[]> & import("../core/CustomElement.js").Class<{ stateTargetElement: HTMLElement; }, any[]> & { formAssociated: true; } & import("../core/CustomElement.js").Class<{ _ipcListener: EventListener; _ipcTarget: EventTarget; _files: FileList; }, any[]> & import("../core/CustomElement.js").Class<{ ariaControls: string; autocomplete: string; name: string; readOnly: boolean; formNoValidate: boolean; defaultChecked: boolean; _checkedDirty: boolean; _checked: boolean; required: boolean; type: string; _defaultValue: string; _value: string; _valueDirty: boolean; _userInteracted: boolean; _invalid: boolean; _badInput: boolean; _validationMessage: string; _formDisabled: boolean; _formReset: boolean; }, any[]> & import("../core/CustomElement.js").Class<{ erroredState: boolean; defaultValue: string; _valueBehavior: "default" | "value" | "default/on" | "filename"; }, any[]> & import("../core/CustomElement.js").Class<{ _onSetValue(value: string): void; _onSetChecked(checked: boolean): void; }, any[]> & import("../core/CustomElement.js").Class<{ value: string; checked: boolean; }, any[]> & import("../core/CustomElement.js").Class<{ form: HTMLFormElement; validity: ValidityState; validationMessage: string; willValidate: boolean; labels: NodeList; }, any[]> & import("../core/CustomElement.js").Class<{ disabledState: boolean; }, any[]> & import("../core/CustomElement.js").Class<{ checkValidity(): boolean; reportValidity(): boolean; setCustomValidity(error: string): void; _notifyRadioChange(key: string, value: string): void; refreshFormAssociation(): void; formAssociatedCallback(form: HTMLFormElement | null): void; formIPCEvent(event: CustomEvent<[string, string]>): void; formDisabledCallback(disabled: boolean): void; formResetCallback(): void; formStateRestoreCallback(state: string | FormData, mode: "autocomplete" | "restore"): void; _updateFormAssociatedValue(): void; }, any[]> & import("../core/CustomElement.js").Class<{ ariaLabel: string; _slotInnerText: string; }, any[]> & import("../core/CustomElement.js").Class<{ focusableOnDisabled: boolean; controlTagName: string; controlVoidElement: boolean; _slotMutationObserver: any; }, any[]> & import("../core/CustomElement.js").Class<{ /** * Default behavior can be overridden * @param {string} value */ _onControlValue(value: string): void; onValueChangingContentAttribute(): void; focus(options?: FocusOptions): void; /** Redirect click requests to control itself */ click(): void; }, any[]> & import("../core/CustomElement.js").Class<{ stateTargetElement: HTMLElement; }, any[]> & import("../core/CustomElement.js").Class<{ checkValidity(): boolean; reportValidity(): boolean; /** * @param {string} error * @return {void} */ setCustomValidity(error: string): void; }, any[]> & import("../core/CustomElement.js").Class<{ _computedAriaLabel: string; }, any[]> & import("../core/CustomElement.js").Class<{ _computedAriaLabelledby: never; }, any[]>; export type CustomElement = import("../core/CustomElement.js").default; export type DeprecatedHTMLInputElementProperties = "align" | "useMap"; export type HTMLControlElement = HTMLInputElement | HTMLTextAreaElement | HTMLSelectElement; //# sourceMappingURL=ControlMixin.d.ts.map