import * as React from 'react'; export interface FooterProps { children: React.ReactNode; } declare function Footer({ children }: FooterProps): JSX.Element; export default Footer;