import React from 'react'; import { SliceArticle } from './slice'; export type MouseEventType = React.MouseEvent; export type ClickHandlerType = ( event: MouseEventType, article: SliceArticle, position?: string ) => void;