import { FooterProps as RcFooterProps } from 'rc-footer';
import React from 'react';
import 'rc-footer/assets/index.less';
interface FooterProps extends RcFooterProps {
    rootDomain?: string;
    language?: string;
    githubUrl?: string;
    /**
     * 是否为动态 footer
     */
    isDynamicFooter?: boolean;
}
/**
 * 底部菜单
 * @returns
 */
export declare const Footer: React.FC<FooterProps>;
export {};
