/// import { BeastGridConfig } from '../../common'; type Props = { config: BeastGridConfig; x: number; y: number; theme: string; visible: boolean; onClose: () => void; onCopy: (withHeaders: boolean) => void; onExport: () => void; onChartOpen: () => void; }; export default function ContextMenu(props: Props): import("react").ReactPortal | null; export {};