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