import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiInputTextViewState } from './logic.js'; import type { InputTextSize, InputTextType, InputTextVariant, NuiInputTextEventMap } from './types.js'; export type { NuiInputTextEventMap }; export declare class NuiInputText extends LitElement implements NuiInputTextViewState { value: string; type: InputTextType; placeholder: string; disabled: boolean; readonly: boolean; invalid: boolean; required: boolean; name: string; inputId: string; ariaLabel: string; ariaLabelledby: string; autocomplete: string; maxlength: number; minlength: number; size: InputTextSize | ''; variant: InputTextVariant | ''; fluid: boolean; unstyled: boolean; nuiType: NuiType; inputClass: string; protected createRenderRoot(): DocumentFragment | HTMLElement; protected updated(changed: PropertyValues): void; private handleInput; private handleChange; render(): import("lit-html").TemplateResult; } export interface NuiInputText { addEventListener( type: K, listener: (this: NuiInputText, ev: NuiInputTextEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; addEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: K, listener: (this: NuiInputText, ev: NuiInputTextEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; } declare global { interface HTMLElementTagNameMap { 'nui-input-text': NuiInputText; } } //# sourceMappingURL=nui-input-text.d.ts.map