import { Attributes, Component } from 'jinge'; export interface ListItemLinkAttrs { ripple?: boolean; disabled?: boolean; href?: string; target?: string; } export declare class ListItemLink extends Component { static template: string; ripple?: boolean; disabled?: boolean; href?: string; target?: string; constructor(attrs: Attributes); }