import { type ElementType, type ReactElement } from 'react'; import type { DataTestId, PolymorphicComponentProps, StylingProps, WithChildren } from '@dynatrace/strato-components/core'; /** * @public */ export interface AppHeaderNavigationProps extends StylingProps, DataTestId, WithChildren { } /** * Container for AppHeader navigation items * @public */ export declare const Navigation: (props: AppHeaderNavigationProps & import("react").RefAttributes) => React.ReactElement | null; /** * @public */ export interface AppHeaderNavigationItemOwnProps extends WithChildren, StylingProps, DataTestId { href?: string; disabled?: boolean; isSelected?: boolean; } /** * @public */ export type AppHeaderNavigationItemProps = PolymorphicComponentProps; /** * Used to configure desktop and mobile navigation items * @public */ export declare const NavigationItem: (props: AppHeaderNavigationItemProps) => ReactElement | null;