/** * Official Type definitions for Jspreadsheet React * https://jspreadsheet.com/v10/docs/react * Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped */ import Component from './index'; interface Modal { ref?: MutableRefObject; (): any [key: string]: any } type Props = IntrinsicAttributes & Component.Options & Modal; declare function Modal(props: Props): any; export default Modal;