UNPKG

541 BTypeScriptView Raw
1import './index.less';
2import React from 'react';
3import type { WithFalse } from '../../typings';
4export declare type GlobalFooterProps = {
5 links?: WithFalse<{
6 key?: string;
7 title: React.ReactNode;
8 href: string;
9 blankTarget?: boolean;
10 }[]>;
11 copyright?: React.ReactNode;
12 style?: React.CSSProperties;
13 prefixCls?: string;
14 className?: string;
15};
16declare const _default: ({ className, prefixCls, links, copyright, style }: GlobalFooterProps) => JSX.Element | null;
17export default _default;