import * as React from 'react';
interface FooterSectionProps {
    className?: string;
    title?: string;
    children?: any;
}
export declare const FooterSection: ({ children, title, }: FooterSectionProps) => React.ReactElement<any>;
export {};
