import type { FC } from 'react'; import type { PanelContentType } from '../../types'; import './style.less'; export interface HeaderProps { /** * 内容类型 */ type: PanelContentType; /** * logo 链接 */ logo?: string; /** * 点击 logo 跳转的 URL */ logoUrl?: string; } export declare const Header: FC;