export class Control extends HTMLElement {
static get observedAttributes(): string[];
_aspect: string;
connectedCallback(): void;
/**
* @param {string} name
* @param {string} _
* @param {string} newValue
*/
attributeChangedCallback(name: string, _: string, newValue: string): void;
/**
* @param {InputEvent} event
*/
_handleChange(event: InputEvent): void;
/**
* @param {HTMLInputElement} input
*/
_emitChange(input: HTMLInputElement): void;
}
export const NAME: "th-control";
export const Component: typeof Control;