import React from 'react';
export type Props = {
    className?: string;
    headingText: string;
    textRight?: string;
    iconLeft?: JSX.Element;
    onRightClick?: () => void;
    onLeftClick?: () => void;
};
declare const MobileTopBar: ({ className, onLeftClick, headingText, onRightClick, iconLeft, textRight, }: Props) => React.JSX.Element;
export { MobileTopBar };
