import type { FC } from 'react'; import type * as H from 'history'; import type { PanelContentType } from '../../types'; import './style.less'; export interface FooterProps { /** * 类型 */ type: PanelContentType; /** * @title 微信登录方法 */ onWechatLoginClick?: () => void; /** * @title 注册页面 Url */ onRegisterClick?: (history: H.History) => void; } export declare const Footer: FC;