import { Category } from '@cytoai/types'; import * as React from 'react'; declare type Props = { category: Category; children: React.ReactNode; updateImageCategory: (identifier: string, categoryIdentifier: string) => void; }; /** * * @param props * @constructor */ declare const CategoryDropTarget: (props: Props) => JSX.Element; export default CategoryDropTarget;