1 | import type { CSSProperties } from 'react';
|
2 | import React from 'react';
|
3 | import type { WithFalse } from '../typing';
|
4 | export 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 | };
|
16 | declare const DefaultFooter: React.FC<FooterProps>;
|
17 | export { DefaultFooter };
|