import React from 'react'; import { IconType } from './types/icons'; export interface FooterProps { children?: Array | string> | React.ReactElement | string; icon?: IconType; header?: string; className?: string; } export declare const Footer: React.SFC; export default Footer;