UNPKG

@ant-design/pro-layout

Version:
17 lines (16 loc) 522 B
import React from 'react'; import type { WithFalse } from '../../typing'; export declare type GlobalFooterProps = { links?: WithFalse<{ key?: string; title: React.ReactNode; href: string; blankTarget?: boolean; }[]>; copyright?: React.ReactNode; style?: React.CSSProperties; prefixCls?: string; className?: string; }; declare const GlobalFooter: ({ className, prefixCls, links, copyright, style, }: GlobalFooterProps) => JSX.Element | null; export { GlobalFooter };