import { ImportedDataState } from '@excalidraw/excalidraw/types/data/types'; import { ExcalidrawElement } from '@excalidraw/excalidraw/types/element/types'; import { ExcalidrawProps } from '@excalidraw/excalidraw/types/types'; import { TElement } from '@udecode/plate-common'; export interface TExcalidrawElement extends TElement { data?: { elements: ExcalidrawDataState['elements']; state: ExcalidrawDataState['appState']; } | null; } export interface ExcalidrawDataState extends Omit { elements?: readonly Partial[] | null; } export interface TExcalidrawProps extends Omit { initialData: ExcalidrawDataState | null | Promise; } //# sourceMappingURL=types.d.ts.map