UNPKG

@atlaskit/editor-plugin-help-dialog

Version:

Help Dialog plugin for @atlaskit/editor-core

12 lines (11 loc) 264 B
/** * @jsxRuntime classic * @jsx jsx */ import { jsx } from '@emotion/react'; import type { Format } from './Format'; interface ModalProps { formatting: Format[]; } declare const Modal: ({ formatting }: ModalProps) => jsx.JSX.Element; export default Modal;