import React from 'react'; import './index.scss'; export interface IListItem { id: number | string; icon: JSX.Element; text: string; onClick?: () => any; } interface IProps { header?: string; items: IListItem[]; } declare const ContextMenu: React.FC; export { ContextMenu };