/** * @file * @author dailin01 */ import React from 'react'; interface UrlConfig { href: string; target?: string; } interface LogoConfig { logo: string | React.ReactNode; urlConfig?: UrlConfig; } interface TitleConfig { title: string | React.ReactNode; urlConfig?: UrlConfig; } export interface HeaderMenuProps { prefixCls?: string; logoInfo?: LogoConfig; titleInfo?: TitleConfig; headerMenu?: React.ReactNode; viceHeaderMenu?: React.ReactNode; otherArea?: React.ReactNode; headerStyle?: any; } interface HeaderMenuInterface extends React.FC { } declare const HeaderMenu: HeaderMenuInterface; export default HeaderMenu;