import { LitElement } from 'lit'; /** * @htmlElement `` * * A Web Component that provides a consistent example text element for form inputs. * * @example * The element's {@link text | `text`} attribute/property can be set via HTML or * JavaScript. * * For example: * ```html * * * * * * * * ``` */ export declare class LisFormInputExampleElement extends LitElement { /** @ignore */ static styles: import("lit").CSSResult; /** @ignore */ createRenderRoot(): this; /** * The text to show in the example element. * * @attribute */ text?: string; /** @ignore */ private _getexampleElement; /** @ignore */ render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'lis-form-input-example-element': LisFormInputExampleElement; } } //# sourceMappingURL=lis-form-input-example-element.d.ts.map