import '@material/web/field/filled-field.js'; import '@material/web/field/outlined-field.js'; import { LitElement } from 'lit'; export declare class IxField extends LitElement { static styles: import("lit").CSSResult; filled: boolean; disabled: boolean; error: boolean; focused: boolean; label: string; populated: boolean; required: boolean; resizable: boolean; supportingText: string; errorText: string; count: number; max: number; /** * Whether or not the field has leading content. */ hasStart: boolean; /** * Whether or not the field has trailing content. */ hasEnd: boolean; private input; connectedCallback(): void; private handleSlotInput; protected render(): import("lit-html").TemplateResult<1 | 2 | 3>; }