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