import { CSSResultGroup, LitElement } from 'lit'; export declare class Input extends LitElement { static get styles(): CSSResultGroup; disabled: boolean; block: boolean; size: string; class: string; id: string; placeholder: string; value: string; name: string; type: 'hidden' | 'text' | 'search' | 'tel' | 'url' | 'email' | 'password' | 'datetime' | 'date' | 'month' | 'week' | 'time' | 'datetime-local' | 'number' | 'range' | 'color' | 'checkbox' | 'radio' | 'file' | 'submit' | 'image' | 'reset' | 'button'; valid: boolean; invalid: boolean; private onChangeHandler; render(): import("lit-html").TemplateResult<1>; }