export declare class NavigationItem {
    Name: string;
    View: string;
    Path: string;
    constructor(Name: string, View: string, Path: string);
    CanNavigation: boolean;
}
