import { ExcalidrawScene } from '../excalidraw/excalidraw.app'; export declare class Excalidraw { host: HTMLDeckgoExcalidrawElement; /** * An Excalidraw scene that contains app state and elements. On change, Excalidraw will be updated. */ scene: ExcalidrawScene; componentDidLoad(): void; /** * Export Excalidraw scene to blob - i.e. to image * @param type The mime type of the image. Default: image/webp */ toBlob(type?: string): Promise; /** * Export Excalidraw scene data to blob */ exportScene(): Promise; onSceneChange(): void; render(): any; }