import React from 'react'; interface FooterProps { state: any; reload: () => void; } declare const Footer: ({ state, reload }: FooterProps) => React.JSX.Element | null; export default Footer;