/// import Library from "../data/library"; import { LibraryItems, LibraryItem, AppState, BinaryFiles, ExcalidrawProps } from "../types"; import "./LibraryMenu.scss"; export declare const LibraryMenu: ({ onClose, onInsertLibraryItems, pendingElements, onAddToLibrary, theme, setAppState, files, libraryReturnUrl, focusContainer, library, id, appState, }: { pendingElements: LibraryItem["elements"]; onClose: () => void; onInsertLibraryItems: (libraryItems: LibraryItems) => void; onAddToLibrary: () => void; theme: AppState["theme"]; files: BinaryFiles; setAppState: React.Component["setState"]; libraryReturnUrl: ExcalidrawProps["libraryReturnUrl"]; focusContainer: () => void; library: Library; id: string; appState: AppState; }) => JSX.Element;