/** * @jsxRuntime classic * @jsx jsx */ import { type ReactNode } from 'react'; export interface NavigationFooterProps { children: ReactNode; } /** * __Navigation footer__ * * Allows for customisation of the footer. * * - [Examples](https://atlassian.design/components/side-navigation/examples#header-and-footer) * - [Code](https://atlassian.design/components/side-navigation/code) */ declare const NavigationFooter: ({ children }: NavigationFooterProps) => JSX.Element; export default NavigationFooter;