import React from 'react';
export interface FooterProps {
backgroundColor?: string;
padding?: string;
margin?: string;
maxWidth?: string;
minHeight?: string;
className?: string;
onClick?: (event?: MouseEvent) => void;
}
export declare const Footer: React.FC<FooterProps>;