import React, { FunctionComponent } from 'react';
import { BasicComponent } from '../../utils/typings';
export interface FooterProps extends BasicComponent {
    /**
    * logo图
    * @default -
    */
    logo: string
    /**
    * 是否显示logo
    * @default true
    */
    showLogo: boolean
    /**
    * 文案
    * @default -
    */
    text: string
    /**
    * 深色背景
    * @default false
    */
    deepBackground: boolean
    /**
    * 上方内容
    * @default -
    */
    topContent: React.ReactNode
    /**
    * 下方内容
    * @default -
    */
    bottomContent: React.ReactNode
}
export declare const Footer: FunctionComponent<Partial<FooterProps>>;
