import * as React from "react"; import Element = React.JSX.Element; import { Component } from "react"; import { INavigationLinkGroupContainerPropertySet } from "./INavigationLinkGroupContainerPropertySet"; import { INavigationLinkGroupContainerState } from "./INavigationLinkGroupContainerState"; import { NavigationLinkGroup } from "./NavigationLinkGroup"; export declare class NavigationLinkGroupContainer extends Component { private groups; constructor(props: INavigationLinkGroupContainerPropertySet); render(): Element; componentDidMount(): void; registerGroup(alternate: NavigationLinkGroup): void; setCurrent(id: string): void; hasGroup(id: string): boolean; private initializeCurrentIfNeeded; }