import React from "react"; export interface FooterProps { children?: React.ReactNode; [rest: string]: any; } export default function Footer({ children, ...rest }: FooterProps): JSX.Element;