export declare class NavigationItem { private readonly id; private readonly to; private readonly text; private readonly selected; constructor(id: string, to: string, text: string, selected: boolean); getId(): string; getTo(): string; getText(): string; isSelected(): boolean; }