UNPKG

481 BTypeScriptView Raw
1import type { CSSProperties } from 'react';
2import React from 'react';
3import type { WithFalse } from './typings';
4export declare type FooterProps = {
5 links?: WithFalse<{
6 key?: string;
7 title: React.ReactNode;
8 href: string;
9 blankTarget?: boolean;
10 }[]>;
11 copyright?: WithFalse<string>;
12 style?: CSSProperties;
13 className?: string;
14 prefixCls?: string;
15};
16declare const FooterView: React.FC<FooterProps>;
17export default FooterView;