import React from 'react';
import type { UseMenuEvents, UseMenuOptions } from '../../../../types';
export declare const useMenu: (menuEvents: UseMenuEvents, options: UseMenuOptions) => {
    ActiveComponent: ({ isLoading, stop }: {
        isLoading: any;
        stop: any;
    }) => React.JSX.Element;
    Menu: ({ isLoading, onClose }: {
        isLoading: any;
        onClose: any;
    }) => React.JSX.Element;
};
