import { ResponsiveSized } from '../../../../context/windowSizeProvider'; import { ReactChild } from '../../../../types/common'; import { PickerTitleProps } from '../components/PickerTitle'; export declare const dimensions: { navBarHeight: ResponsiveSized; titleMarginLeft: ResponsiveSized; }; declare function NavBarWithPicker({ picker, titleText, backgroundColor, showMenuIcon, showBackButton, showBorderBottom, rightSideComponent, onBackClick, onClickMenuIcon, }: Props): import("react/jsx-runtime").JSX.Element; export interface Props { picker: PickerTitleProps; showMenuIcon: boolean; backgroundColor?: string; rightSideComponent?: ReactChild; showBackButton?: boolean; showBorderBottom?: boolean; titleText?: string; onBackClick?: () => void; onClickMenuIcon?: () => void; } export default NavBarWithPicker;