import React from 'react'; import { TdFooterProps } from './type'; import { StyledProps } from '../common'; export interface FooterProps extends TdFooterProps, StyledProps { } declare const Footer: React.FC; export default Footer;