import { NavigationPageType } from '@open-tender/types';
import React from 'react';
import { Handlers, ScreenConfig } from '../types';
export interface CategoryNavOtherProps {
    config: ScreenConfig;
    handlers: Handlers;
    title: string;
    imageUrl: string | null;
    apiUrl: string;
    displayImage?: boolean;
    navigationType?: NavigationPageType;
}
declare const CategoryNavOther: ({ config, handlers, title, imageUrl, apiUrl, displayImage }: CategoryNavOtherProps) => React.JSX.Element;
export default CategoryNavOther;
