import { LitElement } from 'lit'; /** * Native text input with W1C control chrome. * * @csspart control - The native input element. * @csspart input - Alias for the native input element. */ export declare class W1cInput extends LitElement { type: string; name: string; value: string; placeholder: string; autocomplete: string; disabled: boolean; readonly: boolean; required: boolean; invalid: boolean; private input?; focus(options?: FocusOptions): void; render(): import("lit").TemplateResult<1>; private handleInput; private handleChange; static styles: import("lit").CSSResult; } declare global { interface HTMLElementTagNameMap { 'w1c-input': W1cInput; } }