export declare class ApplicationSidebarTab {
    id: string;
    name: string;
    isSelected: boolean;
    subMenu?: ApplicationSidebarTab[];
    action?: (id: string) => void;
    icon?: string;
    constructor(id: string, name: string, isSelected: boolean, subMenu?: ApplicationSidebarTab[], action?: (id: string) => void, icon?: string);
}
export declare class ApplicationSidebarAction {
    name: string;
    action: any;
    icon?: string;
    constructor(name: string, action: any, icon?: string);
}
export declare class ApplicationSidebarComponent {
}
