import * as React from 'react'; import { Palette, Flexible } from '../types'; import { ListItemProps } from '../List'; export declare type LocalTopNavItemProps = { href?: string; isActive?: boolean; palette?: Palette; navId?: string; variant?: Flexible<'default' | 'pill' | 'ghost', string>; }; export declare type TopNavItemProps = ListItemProps & LocalTopNavItemProps; export declare const TopNavItem: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };