/// import type { PDSIconType, PDSTextType } from '../../../common'; type DesktopHeaderBarProps = { text?: PDSTextType; size?: 'xlarge' | 'large'; leftDisplayType?: 'text' | 'icon' | 'back'; iconName?: PDSIconType; leftBtn2Mode?: 'none' | 'mbtn' | 'tbtn'; leftBtn2Text?: PDSTextType; rightBtnMode?: 'none' | 'close' | 'mbtn' | 'mbtn_fill' | 'help_window'; rightBtn2Mode?: 'none' | 'mbtn' | 'mbtn_fill' | 'help_window'; rightBtn3Mode?: 'none' | 'help_window'; mBtnText?: PDSTextType; mBtn2Text?: PDSTextType; mBtnState?: 'normal' | 'disabled'; mBtn2State?: 'normal' | 'disabled'; dividerType?: 'none' | 'solid'; styleTheme?: 'type_a' | 'type_b'; onClickLeftBtn?: () => void; onClickLeft2Btn?: () => void; onClickRightBtn?: () => void; onClickRightBtn2?: () => void; onClickRightBtn3?: () => void; }; declare function DesktopHeaderBar({ text, size, leftDisplayType, iconName, leftBtn2Mode, leftBtn2Text, rightBtnMode, rightBtn2Mode, rightBtn3Mode, mBtnText, mBtn2Text, mBtnState, mBtn2State, dividerType, styleTheme, onClickLeftBtn, onClickLeft2Btn, onClickRightBtn, onClickRightBtn2, onClickRightBtn3 }: DesktopHeaderBarProps): JSX.Element; export default DesktopHeaderBar;