import { ReactNode } from 'react';
export interface MobileNavBarTitleProps {
    desc?: string | ReactNode;
    tag?: ReactNode;
    title: string | ReactNode;
}
declare const MobileNavBarTitle: import("react").NamedExoticComponent<MobileNavBarTitleProps>;
export default MobileNavBarTitle;
