///
import { Handler } from '.';
declare class ContextmenuHandler {
handler: Handler;
contextmenuEl: HTMLDivElement;
constructor(handler: Handler);
/**
* Init context menu
*
*/
init: () => void;
/**
* Show context menu
*
*/
show: import("lodash").DebouncedFunc<(e: any, target: any) => Promise>;
/**
* Hide context menu
*
*/
hide: import("lodash").DebouncedFunc<() => void>;
}
export default ContextmenuHandler;