import { RefObject } from 'react'; export interface Props { title: string; backgroundColor?: string; isTitleAlignLeft?: boolean; scrollableContent?: RefObject; showLaunchIcon?: boolean; style?: React.CSSProperties; tooltipTextOnLaunch?: string; onBackClick: () => void; onLaunchClick: () => void; } export declare function NavBarWithLaunch({ title, tooltipTextOnLaunch, backgroundColor, style, onLaunchClick, onBackClick, showLaunchIcon, }: Readonly): import("react/jsx-runtime").JSX.Element;