import { ComponentInterface } from '../../stencil-public-runtime'; /** * A nav item component that displays a single instance of choice in a list or menu. It functions as a wrapper around the material [list item](https://github.com/material-components/material-components-web/blob/master/packages/mdc-list/) capabilities. * * This component is used as child of `ino-list` and `ino-menu` components. * * > Note: This component's main use case is within the `ino-nav-drawer`. * * @slot default - Any element */ export declare class NavItem implements ComponentInterface { el: HTMLInoNavItemElement; /** * The text of this list item. */ text?: string; /** * The secondary text of this list item used in a two-lined list. */ subText?: string; /** * Styles the row in an activated style. * * Use this for only one item * and to mark it as permanently activated. */ activated?: boolean; /** * Styles the row in a disabled style. */ disabled?: boolean; render(): any; }