import { ComponentPropsWithoutRef } from 'react'; export interface NavigationProps extends ComponentPropsWithoutRef<'nav'> { /** * Provide content for the navigation */ children: React.ReactNode; /** * Specify orientation of the navigation * @default 'horizontal' */ orientation?: 'horizontal' | 'vertical'; } declare function __Navigation({ children, orientation, className, ...props }: NavigationProps): import("react/jsx-runtime").JSX.Element; export declare const _Navigation: import('react').NamedExoticComponent & { readonly type: typeof __Navigation; } & { Item: import('react').MemoExoticComponent<(props: import('./NavigationItem').NavigationItemProps) => import("react/jsx-runtime").JSX.Element>; displayName: string; }; export default _Navigation;