import React from 'react'; import './style'; interface IProps { /** * @description Custom header's logo * @default igloo-logo.svg */ logo?: string; /** * @description Is the hamburger menu displayed on the mobile terminal? */ hamButtonVisible?: boolean; /** * @description Menu list */ menus?: Array<{ label: string; value: string; }>; /** * @description Set the key of the selected menu. */ selectedValue?: string | undefined; /** * @description Click the callback of tabs. */ onChange?: (value: string) => void; /** * @description Click the callback of Logo. */ onClickLogo?: () => void; /** * @description PanelMenu Panel' className on the mobile side */ panelClassName?: string; /** * @description PanelMenu Panel' style on the mobile side */ panelStyle?: React.CSSProperties; /** * @description ClassName of custom root element */ className?: string; /** * @description Customize the style of the root element */ style?: React.CSSProperties; } declare const _default: React.NamedExoticComponent; export default _default;