import { FC, HTMLAttributes } from 'react';
export interface FooterProps extends HTMLAttributes<HTMLElement> {
    height?: `${number}px` | `${number}rem` | `${number}em` | `${number}%`;
}
declare const Footer: FC<FooterProps>;
export default Footer;
