import { NativeElementPropsWithoutKeyAndRef } from '../utils/jsx-types'; export interface NavigationFooterProps extends NativeElementPropsWithoutKeyAndRef<'footer'> { /** * Children of footer, only `NavigationUserMenu` is allowed as direct child, * other children will be wrapped in an icons container. */ children?: React.ReactNode; } declare const NavigationFooter: import("react").ForwardRefExoticComponent>; export default NavigationFooter;