import { LitElement } from 'lit'; import '@material/web/list/list-item.js'; /** * Supported behaviors for a list item. */ export type ListItemType = 'text' | 'button' | 'link'; export declare class IxListItem extends LitElement { /** * Disables the item and makes it non-selectable and non-interactive. */ disabled: boolean; /** * Sets the behavior of the list item, defaults to "text". Change to "link" or * "button" for interactive items. */ type: ListItemType; /** * READONLY. Sets the `md-list-item` attribute on the element. */ isListItem: boolean; /** * Sets the underlying `HTMLAnchorElement`'s `href` resource attribute. */ href: string; /** * Sets the underlying `HTMLAnchorElement`'s `target` attribute when `href` is * set. */ target: '_blank' | '_parent' | '_self' | '_top' | ''; render(): import("lit-html").TemplateResult<1>; }