import { FC, VueNode, WithFalse } from "../typings"; export interface LinkProps { key?: string; title: VueNode; href: string; blankTarget?: boolean; } export declare type Links = WithFalse; export interface GlobalFooterProps { prefixCls?: string; links?: Links; copyright?: VueNode; } /** * 函数式组件 * @param props * @param attrs * @param slots * @param emit * @constructor */ declare const GlobalFooter: FC; export default GlobalFooter;