17 lines
520 B
TypeScript
17 lines
520 B
TypeScript
import React from 'react';
|
|
import type { WithFalse } from '../../typing';
|
|
export 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) => React.JSX.Element | null;
|
|
export { GlobalFooter };
|