import React from "react"; import { HorizontalPosition } from "../../../lib/inputTypes"; export interface ModalProps extends React.HTMLAttributes { showModal: boolean; setShowModal: React.Dispatch> | ((nextState: boolean) => void); parentRef: React.RefObject; width?: number; maxHeight?: string; anchorPosition?: HorizontalPosition; children: React.ReactNode; } declare const Modal: React.ForwardRefExoticComponent>; export default Modal;