import type { NonDeletedExcalidrawElement } from '@excalidraw/excalidraw/types/element/types'; import type { AppState, BinaryFiles } from '@excalidraw/excalidraw/types/types'; export interface ExcalidrawScene { type: 'excalidraw'; version: number; source: string; elements: NonDeletedExcalidrawElement[]; appState: AppState; files: BinaryFiles; } export declare const renderExcalidraw: ({ host, scene }: { host: any; scene: any; }) => void; export declare const exportToBlob: (mimeType?: string) => Promise; export declare const getScene: () => ExcalidrawScene; export declare const updateScene: (scene: ExcalidrawScene | undefined) => void;