/// export declare const appBarHeight = 55; export declare const defaultAppBarZIndex = 1000; export declare const defaultBackgroundColor = "#FFFFFF"; interface Props { zIndex?: number; enableAppbarMenu?: boolean; onClickAppbarMenu?: () => void; onLogout?: () => void; logoSrc?: any; backgroundColor?: string; title?: string; titleColor?: string | undefined; searchBar?: any; searchBarJustification?: any; searchBarLeftMargin?: any; searchBarAlignSelf?: any; help?: boolean; notification?: boolean; orgLogo?: string; enableCustomSettingPanel?: boolean; onShowSettingPanel?: () => void; onClickOrgIcon?: () => void; onClickHelpIcon?: () => void; totalNotification?: number; showNotifications?: boolean; hideNotification?: boolean; closeButton?: boolean; onClose?: () => void; application?: any; avatarHistory?: any; onOpenSetting?: () => void; onOpenHelpCenter?: () => void; onOpenNotification?: () => void; openSetting?: boolean; selectedTabId?: number | string; organization?: any; } declare function NewAppBar({ zIndex, enableAppbarMenu, onClickAppbarMenu, logoSrc, backgroundColor, title, titleColor, searchBar, searchBarJustification, searchBarLeftMargin, searchBarAlignSelf, help, notification, onClickOrgIcon, closeButton, onClose, onOpenSetting, onOpenHelpCenter, onOpenNotification, openSetting, selectedTabId, organization, }: Props): JSX.Element; declare namespace NewAppBar { var defaultProps: { logoSrc: string; orgLogo: string; enableAppbarMenu: boolean; titleColor: string; backgroundColor: string; elevation: number; searchBarJustification: string; searchBarLeftMargin: number; zIndex: number; searchBarAlignSelf: string; enableCustomSettingPanel: boolean; onShowSettingPanel: any; onLogout: any; onClickOrgIcon: any; onClickHelpIcon: any; closeButton: boolean; onClose: any; avatarHistory: any[]; onOpenSetting: any; onOpenHelpCenter: any; onOpenNotification: any; }; } export default NewAppBar;