import React, { CSSProperties } from 'react'; export interface IAboutLink { text: string; link?: string; target?: '_blank' | '_self' | '_parent' | '_top'; onClick?: (e?: React.MouseEvent) => void; } export interface IAboutProps { /** * @description 自定义类名 * @default */ className?: string; /** * @description 自定义样式 * @default */ style?: CSSProperties; /** * @description 是否显示边框 * @default true */ bordered?: boolean; /** * @description Logo * @default */ logo?: string; /** * @description 版本号 * @default */ version?: string; /** * @description 发布时间 * @default */ publishDate?: string; /** * @description 相关链接 * @default */ links?: IAboutLink[]; /** * @description 版权信息 * @default */ copyright?: string; } export declare function About(props: IAboutProps): JSX.Element;