import { RefObject } from 'react'; export interface Props { title: string; backgroundColor?: string; isTitleAlignLeft?: boolean; scrollableContent?: RefObject; showBorderBottom?: boolean; style?: React.CSSProperties; textTitleContainerStyles?: React.CSSProperties; onCloseClick?: () => void; } export declare function NavBarWithClose({ title, backgroundColor, style, onCloseClick, scrollableContent, showBorderBottom, textTitleContainerStyles, isTitleAlignLeft, }: Props): import("react/jsx-runtime").JSX.Element;