import { default as React, FC } from 'react'; interface FooterProp { className?: string; tips?: HTMLDivElement | string | boolean; children?: React.ReactNode; } declare const Footer: FC; export default Footer;