import React from 'react'; export interface FooterProps { className?: string; style?: React.CSSProperties; children?: React.ReactNode; } declare const Footer: React.FC; export default Footer;