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