UNPKG

@excalidraw/math

Version:

Excalidraw math functions

19 lines (18 loc) 763 B
/// <reference types="react" /> import type Library from "../data/library"; import type { LibraryItem, UIAppState } from "../types"; export declare const LibraryDropdownMenuButton: React.FC<{ setAppState: React.Component<any, UIAppState>["setState"]; selectedItems: LibraryItem["id"][]; library: Library; onRemoveFromLibrary: () => void; resetLibrary: () => void; onSelectItems: (items: LibraryItem["id"][]) => void; appState: UIAppState; className?: string; }>; export declare const LibraryDropdownMenu: ({ selectedItems, onSelectItems, className, }: { selectedItems: LibraryItem["id"][]; onSelectItems: (id: LibraryItem["id"][]) => void; className?: string | undefined; }) => import("react/jsx-runtime").JSX.Element;