import { ReactNode } from 'react';
export type FooterProps = {
    children?: ReactNode;
};
/**
 * Footer for the notification inbox. Renders a button to toggle the user
 * preferences panel.
 *
 * @example
 * <Footer />
 */
export default function Footer({ children }: FooterProps): import("@emotion/react/jsx-runtime").JSX.Element;
