import type { FC } from 'react'; interface MobileNavBarProps { name: string; onBack: () => void; onOk: () => void; } declare const MobileNavBar: FC; export default MobileNavBar;