import { LitElement, type PropertyValues } from 'lit'; import { type NuiType } from '../../types/nui-type.js'; import { type NuiInputMaskViewState } from './logic.js'; import type { InputMaskSize, InputMaskVariant, NuiInputMaskEventMap } from './types.js'; export type { NuiInputMaskEventMap }; export declare class NuiInputMask extends LitElement implements NuiInputMaskViewState { value: string; mask: string; slotChar: string; autoClear: boolean; unmask: boolean; placeholder: string; disabled: boolean; readonly: boolean; invalid: boolean; name: string; inputId: string; ariaLabel: string; ariaLabelledby: string; size: InputMaskSize | ''; variant: InputMaskVariant | ''; fluid: boolean; unstyled: boolean; nuiType: NuiType; inputClass: string; private controller; private syncingValue; protected createRenderRoot(): DocumentFragment | HTMLElement; protected firstUpdated(): void; protected updated(changed: PropertyValues): void; disconnectedCallback(): void; private getInput; private initController; private handleValueChange; private handleComplete; render(): import("lit-html").TemplateResult; } export interface NuiInputMask { addEventListener( type: K, listener: (this: NuiInputMask, ev: NuiInputMaskEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; addEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: K, listener: (this: NuiInputMask, ev: NuiInputMaskEventMap[K]) => void, options?: boolean | AddEventListenerOptions, ): void; removeEventListener( type: string, listener: EventListenerOrEventListenerObject, options?: boolean | AddEventListenerOptions, ): void; } declare global { interface HTMLElementTagNameMap { 'nui-input-mask': NuiInputMask; } } //# sourceMappingURL=nui-input-mask.d.ts.map