import type { IInteractive } from '../../typings'; interface IProps { interactive: IInteractive; dragIcon: JSX.Element; onChange: (newInteractive: Partial) => void; onEditName: (newName: string, interactive: IInteractive) => void; onDelete: (interactive: IInteractive) => void; } declare const InteractiveItem: ({ interactive, onChange, onEditName, onDelete, dragIcon, }: IProps) => JSX.Element; export default InteractiveItem;