import type { ComponentPropsWithRef, ElementType } from 'react'; export type NavAppNameProperties = { /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Containing element for app name styles within a Nav. * @docs {@link https://design.visa.com/components/horizontal-navigation/?code_library=react | See Docs} */ declare const NavAppName: { ({ className, tag: Tag, ...remainingProps }: NavAppNameProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default NavAppName;