import { Attributes, Component } from 'jinge'; declare function getTag(attrs: ListItemAttrs): "default" | "link" | "button" | "sref" | "expand"; export interface ListItemAttrs { ripple?: boolean; disabled?: boolean; href?: string; to?: string; target?: string; active?: boolean; expand?: boolean; expanded?: boolean; } export declare class ListItem extends Component { static template: string; ripple?: boolean; disabled?: boolean; href?: string; to?: string; target?: string; active?: boolean; expanded?: boolean; _tag: ReturnType; constructor(attrs: Attributes); notifyExpanded(v: boolean): void; __afterRender(): void; } export {};