UNPKG

@excalidraw/excalidraw

Version:
10 lines (9 loc) 386 B
import React from "react"; import { AppState, LibraryItem } from "../types"; import "./PasteChartDialog.scss"; export declare const PasteChartDialog: ({ setAppState, appState, onClose, onInsertChart, }: { appState: AppState; onClose: () => void; setAppState: React.Component<any, AppState>["setState"]; onInsertChart: (elements: LibraryItem) => void; }) => JSX.Element;