import { Attributes, Component } from 'jinge'; import { BarWrapper } from './bar'; export interface BottomBarItemAttrs { id?: string; disabled?: boolean; active?: string; to?: string; target?: string; isActive?: boolean; } export declare class BottomBarItem extends Component { static template: string; id?: string; disabled?: boolean; active?: string; to?: string; target?: string; isActive?: boolean; Bar: BarWrapper; constructor(attrs: Attributes); onClick(evt: MouseEvent): void; __afterRender(): void; }