import type { RefObject } from 'react';
import type { NavigationProps } from './types';
type FooterProps = {
    onToggleExpand: NavigationProps['onToggleExpand'];
    contentRef: RefObject<HTMLDivElement | null>;
};
export declare const Footer: ({ onToggleExpand, contentRef }: FooterProps) => import("@emotion/react/jsx-runtime").JSX.Element;
export {};
