import { ReactElement } from 'react'; import { FlyoutNavigationItemProps } from './flyout-navigation-item/flyout-navigation-item'; export type FlyoutNavigationProps = { /** * Render a subitem as active */ active?: string; /** * Custom behaviour of the navigation */ behaviour?: 'click' | 'hover'; /** * Custom anchor alignment */ anchor?: 'auto' | 'center' | 'left' | 'right'; /** * Navigation content items */ children: ReactElement | (ReactElement[]); }; export declare const FlyoutNavigation: ({ children, behaviour, anchor: anchorAlignment, active }: FlyoutNavigationProps) => import("react/jsx-runtime").JSX.Element;