import { NavigationPageType } from '@open-tender/types';
import { CategoryNavOtherProps } from '@open-tender/ui';
import { ReactNode } from 'react';
declare const CategoryNavOther: ({ title, path, displayImage, navigationType, navigate, children }: {
    title: string;
    path: string;
    displayImage?: boolean;
    navigationType?: NavigationPageType;
    navigate: (route: string) => void;
    children: (props: CategoryNavOtherProps) => ReactNode;
}) => ReactNode;
export default CategoryNavOther;
