import { MenuItem } from '@open-tender/types';
import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface MenuOtherProps {
    config: ScreenConfig;
    handlers: Handlers;
    title: string;
    subtitle?: string | null;
    item: MenuItem;
    showSubtitle?: boolean;
    apiUrl: string;
}
declare const MenuOther: ({ config, handlers, title, subtitle, item, showSubtitle, apiUrl }: MenuOtherProps) => React.JSX.Element | null;
export default MenuOther;
