import * as React from 'react'; import { ThemeConfig } from '../types'; import { NavigationProps } from '../Navigation'; export declare type LocalTopNavProps = { defaultSelectedId?: string; onChange?: any; selectedId?: string; }; export declare type TopNavProps = NavigationProps & LocalTopNavProps; export declare const TopNavContext: React.Context<{ onChangeSelectedId: (id: string) => void; selectedId?: string; overrides?: ThemeConfig; }>; export declare const TopNav: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };