import { GameObjectType } from "../../api/serializer/types"; type Props = { name: GameObjectType; iconName?: string; onDragStart?: (name: GameObjectType) => void; onDragEnd?: () => void; }; declare const ComponentIcon: ({ name, iconName, onDragStart, onDragEnd }: Props) => import("preact").JSX.Element; export default ComponentIcon;