import { ReactNode } from 'react'; declare type FooterProps = { children: ReactNode; }; export declare function Footer({ children }: FooterProps): JSX.Element; export {};