import { Component } from 'react'; export interface NavLogoProps { /** * 自定义 class */ className?: string; /** * logo 图片地址,须为 viewBox height 40 的 svg 资源地址 */ src?: string; /** * logo 跳转链接 */ href?: string; /** * 副标题图片地址,须为 viewBox height 24 的 svg 资源地址 */ subheadSrc?: string; /** * 副标题跳转链接 * * - `undefined` (默认)使用 logo 链接即 `props.href` * - `null` 无跳转 * - `string` 链接字符串 */ subheadHref?: string | null; /** * 副标题是否带分割线 */ subheadDivider?: boolean; /** * 是否使用反色 */ reverseColor?: boolean; } export declare class NavLogo extends Component { static displayName: string; static defaultProps: { className: string; reverseColor: boolean; subheadDivider: boolean; }; get className(): string; get src(): string; render(): import("react/jsx-runtime").JSX.Element; }