import React from 'react'; import { CommonProps } from '../Element/Element'; import { LinkProps } from '../Link/Link'; declare type FooterProps = { /** List of links displayed in footer */ links?: (LinkProps & { title: string; })[]; /** Text next to copyright label */ bottomText?: string; /** Overrides the copyright year in Footer. Is supposed to be used ONLY in tests, in order to prevent tests from changing every new year */ copyrightYear?: number; } & CommonProps<'div'>; declare const Footer: React.FunctionComponent; export default Footer;