import { ComponentPropsWithoutRef } from 'react'; export interface SideNavFooterProps extends ComponentPropsWithoutRef<'div'> { /** * The content of the SideNav.Footer * @default null */ children: React.ReactNode; } export declare const SideNavFooter: ({ children, className: _className, ...restProps }: SideNavFooterProps) => import("react/jsx-runtime").JSX.Element;