interface FooterData { account: string; date: string; } interface FooterProps { footer: FooterData; } declare const Footer: ({ footer }: FooterProps) => import("react/jsx-runtime").JSX.Element; export default Footer;