import { ExcalidrawProps, LibraryItems } from '@excalidraw/excalidraw/types/types'; import { Value } from '@udecode/plate-common'; import { StyledElementProps } from '@udecode/plate-styled-components'; import { CSSProp } from 'styled-components'; import { TExcalidrawElement } from '../../types'; export interface ExcalidrawElementStyles { excalidrawWrapper: CSSProp; } export interface ExcalidrawElementProps extends StyledElementProps { scrollToContent?: boolean; libraryItems?: LibraryItems; excalidrawProps?: ExcalidrawProps; } //# sourceMappingURL=ExcalidrawElement.types.d.ts.map