import React from "react"; export interface FooterProps { height?: string; children: React.ReactNode; } declare const Footer: ({ height, children }: FooterProps) => JSX.Element; export default Footer;