import { Component } from 'react'; import { PropsInterface } from "../../interfaces/interfaces/PropsInterface"; interface PropsMenuContextInterface { icon?: string; label?: string; onClick?: (item: PropsMenuContextInterface, index: number, e: any) => void; separate?: boolean; badge?: { label: number | string; }; } export interface ContextMenuInterfaceProps extends PropsInterface { menu: PropsMenuContextInterface[]; } export declare class ContextMenu extends Component { static defaultProps: {}; render(): JSX.Element; private static menu; } export {};