/** * @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;