import * as React from "react"; interface FooterProps { className?: string; children?: React.ReactNode; prefixCls?: string; } declare const Footer: (props: FooterProps) => JSX.Element; export default Footer;