import { View } from '@esui/core'; import '@material/mwc-list/mwc-list-item.js'; import { GraphicType } from '@material/mwc-list/mwc-list-item.js'; export declare class ListItemView extends View { value: string; twoline: boolean; graphic: GraphicType; content: (View | string)[]; get body(): import("lit-html").TemplateResult<1>; } export declare function ItemGraphic(graphic: View): View; export declare function ItemSecondaryLine(sec: View | string): View; export declare function ListItem(...content: (View | string)[]): import("@esui/core").Builder; export declare namespace ListItem { var View: typeof ListItemView; }