export class InputTel extends LitElement { static get styles(): import("lit").CSSResult; static get properties(): { /** The inputs label */ label: { type: StringConstructor; }; /** The inputs value */ value: { type: StringConstructor; }; /** The inputs active region, this is used as a preference and can be overwritten by user input */ region: { type: StringConstructor; }; /** The inputs name */ name: { type: StringConstructor; }; /** Array of preferred regions */ preferredRegions: { type: ArrayConstructor; }; /** Array of allowed regions */ allowedRegions: { type: ArrayConstructor; }; /** Whether the input is invalid `readonly` */ invalid: { type: BooleanConstructor; reflect: boolean; }; /** Whether the input is showing feedback for a invalid `readonly` */ isShowingInvalid: { type: BooleanConstructor; }; /** Disables the input */ _phoneUtil: { type: ObjectConstructor; state: boolean; }; _placeholder: { type: StringConstructor; }; }; get input(): Element | null; label: string; disabled: boolean; value: string; _placeholder: string; region: string; name: string; preferredRegions: any[]; allowedRegions: any[]; invalid: boolean; isShowingInvalid: boolean; _phoneUtil: typeof import("awesome-phonenumber").PhoneNumber | null | undefined; updated(changed: any): void; _handeValidation(): void; fire(name: any, value: any): boolean | null; computePlaceholder(): void; render(): import("lit-html").TemplateResult<1>; } import { LitElement } from "lit-element/lit-element.js";