import { ComponentType } from 'react'; export interface Options { onClick?: VoidFunction; modal?: string; to?: string; } export default function withInteraction(Component: ComponentType): (options: any) => JSX.Element;