import React from 'react'; import type { PrefixIconIconProps } from '../Icon/PropsType'; export interface MyPanelHeaderProps { visible: boolean; backgroundType?: any; appId?: string; prefixIcon?: PrefixIconIconProps; getEngineApis?: any; subTitle?: string; style?: React.CSSProperties; } declare const PanelHeader: React.ForwardRefExoticComponent>; export default PanelHeader;