@zsviczian/excalidraw
Version:
Excalidraw as a React component
12 lines (11 loc) • 457 B
TypeScript
import type { EditorInterface } from "@excalidraw/common";
import "./HintViewer.scss";
import type { AppClassProperties, UIAppState } from "../types";
interface HintViewerProps {
appState: UIAppState;
isMobile: boolean;
editorInterface: EditorInterface;
app: AppClassProperties;
}
export declare const HintViewer: ({ appState, isMobile, editorInterface, app, }: HintViewerProps) => import("react/jsx-runtime").JSX.Element | null;
export {};