import { default as React, ComponentPropsWithoutRef } from 'react'; import { NavigationProps } from '../_Navigation'; interface SideNavBodyProps extends ComponentPropsWithoutRef<'div'> { /** * The content of the SideNav.Body * @default null */ children: React.ReactNode; /** * Utility prop that reflows Header navigation items to SideNavBody when viewing on smaller viewports * @default null */ reflowNavigation?: React.ReactElement | null; /** * Specify aria-label for the reflowed navigation items */ reflowNavigationAriaLabel?: string; } export declare const SideNavBody: ({ children, className: _className, reflowNavigation, reflowNavigationAriaLabel, ...restProps }: SideNavBodyProps) => import("react/jsx-runtime").JSX.Element; export {};