import { TopNavProps } from './TopNavTypes'; /** * TopNav is used to orient users, and to access different areas within an interface. * * @example * } skipNav={Skip To Main Content} title="Product Name" /> * * }> Link * * } search={} title="Product Name" /> * @see https://design.avayacloud.com/components/web/navbar-web * @see https://neo-react-library-storybook.netlify.app/?path=/story/components-top-navigation */ export declare const TopNav: { ({ children, logo, menuToggleBtn, search, skipNav, sticky, title, }: TopNavProps): import("react/jsx-runtime").JSX.Element; displayName: string; Avatar: ({ avatar, dropdown }: import('./TopNavTypes').TopNavAvatarProps) => import('react').ReactElement> | import('react').ReactElement, string | import('react').JSXElementConstructor>; IconButton: import('react').ForwardRefExoticComponent>; LinkButton: import('react').ForwardRefExoticComponent>; Search: ({ "aria-label": ariaLabel, clearable, disabled, startIcon, ...rest }: import('..').TextInputProps) => import("react/jsx-runtime").JSX.Element; SkipNav: ({ children, href, ...rest }: import('./TopNavTypes').TopNavSkipNavProps) => import("react/jsx-runtime").JSX.Element; };