import React from "react"; import Footer from "./components/footer/FooterCenter"; import LiveCollaborationTrigger from "./components/live-collaboration/LiveCollaborationTrigger"; import MainMenu from "./components/main-menu/MainMenu"; import WelcomeScreen from "./components/welcome-screen/WelcomeScreen"; import "./css/app.scss"; import "./css/styles.scss"; import "./fonts/fonts.css"; import type { ExcalidrawProps } from "./types"; export declare const Excalidraw: React.MemoExoticComponent<(props: ExcalidrawProps) => import("react/jsx-runtime").JSX.Element>; export { getSceneVersion, hashElementsVersion, hashString, getNonDeletedElements, } from "@excalidraw/element"; export { getTextFromElements } from "@excalidraw/element"; export { isInvisiblySmallElement } from "@excalidraw/element"; export { defaultLang, useI18n, languages } from "./i18n"; export { restoreAppState, restoreElement, restoreElements, restoreLibraryItems, } from "./data/restore"; export { reconcileElements } from "./data/reconcile"; export { exportToBlob, exportToSvg, exportToClipboard, } from "@excalidraw/utils/export"; export { serializeAsJSON, serializeLibraryAsJSON } from "./data/json"; export { loadFromBlob, loadSceneOrLibraryFromBlob, loadLibraryFromBlob, } from "./data/blob"; export { mergeLibraryItems, getLibraryItemsHash } from "./data/library"; export { isLinearElement } from "@excalidraw/element"; export { FONT_FAMILY, THEME, MIME_TYPES, ROUNDNESS, DEFAULT_LASER_COLOR, UserIdleState, normalizeLink, sceneCoordsToViewportCoords, viewportCoordsToSceneCoords, getFormFactor, } from "@excalidraw/common"; export { mutateElement, newElementWith, bumpVersion, } from "@excalidraw/element"; export { CaptureUpdateAction } from "@excalidraw/element"; export { parseLibraryTokensFromUrl, useHandleLibrary } from "./data/library"; export { Sidebar } from "./components/Sidebar/Sidebar"; export { Button } from "./components/Button"; export { Footer }; export { MainMenu }; export { Ellipsify } from "./components/Ellipsify"; export { useEditorInterface, useStylesPanelMode } from "./components/App"; export { WelcomeScreen }; export { LiveCollaborationTrigger }; export { Stats } from "./components/Stats"; export { exportToCanvas } from "./scene/export"; export { DefaultSidebar } from "./components/DefaultSidebar"; export { TTDDialog } from "./components/TTDDialog/TTDDialog"; export { TTDDialogTrigger } from "./components/TTDDialog/TTDDialogTrigger"; export { TTDStreamFetch } from "./components/TTDDialog/utils/TTDStreamFetch"; export type { TTDPersistenceAdapter, SavedChat, SavedChats, } from "./components/TTDDialog/types"; export { zoomToFitBounds } from "./actions/actionCanvas"; export { getCommonBounds, getVisibleSceneBounds, convertToExcalidrawElements, } from "@excalidraw/element"; export { elementsOverlappingBBox, isElementInsideBBox, elementPartiallyOverlapsWithOrContainsBBox, } from "@excalidraw/utils/withinBounds"; export { DiagramToCodePlugin } from "./components/DiagramToCodePlugin/DiagramToCodePlugin"; export { getDataURL } from "./data/blob"; export { isElementLink } from "@excalidraw/element"; export { setCustomTextMetricsProvider } from "@excalidraw/element"; export { CommandPalette } from "./components/CommandPalette/CommandPalette"; export { renderSpreadsheet, tryParseSpreadsheet, isSpreadsheetValidForChartType, } from "./charts/index"; export { getDefaultAppState, cleanAppStateForExport, clearAppStateForLocalStorage, } from "./appState"; export { libraryItemsAtom } from "./data/library"; export * as icons from "./components/icons"; export * as actions from "./actions/index"; export { duplicateElements, duplicateElement } from "../element/src/duplicate"; export { parseMermaidToExcalidraw } from "@excalidraw/mermaid-to-excalidraw";