import React from 'react';
export interface FooterProps {
    links?: {
        key?: string;
        title: React.ReactNode;
        href: string;
        blankTarget?: boolean;
    }[];
    copyright?: string;
}
declare const FooterView: React.FC<FooterProps>;
export default FooterView;
