UNPKG

@peakpay/excalidraw

Version:
12 lines (11 loc) 420 B
import { NonDeletedExcalidrawElement } from "../element/types"; import { Device, UIAppState } from "../types"; import "./HintViewer.scss"; interface HintViewerProps { appState: UIAppState; elements: readonly NonDeletedExcalidrawElement[]; isMobile: boolean; device: Device; } export declare const HintViewer: ({ appState, elements, isMobile, device, }: HintViewerProps) => JSX.Element | null; export {};