import { Item } from '../../base/item.js'; /** * @tag md-item * * @csspart container * @csspart start * @csspart text * @csspart overline * @csspart headline * @csspart supporting-text * @csspart trailing-supporting-text * @csspart end * * @slot container - container element * @slot start - start content * @slot overline - overline text * @slot headline - headline text * @slot supporting-text - supporting text * @slot trailing-supporting-text - trailing supporting text * @slot end - end content */ export declare class M3Item extends Item { multiline: boolean; static styles: any[]; render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'md-item': M3Item; } }