import { Dispatch, SetStateAction } from "react"; interface JSONPopupProps { popupState: boolean; setPopupState: Dispatch>; json: Object; bottomContent?: React.ReactElement; onClose?: () => void; hideJson?: boolean; } export default JSONPopupProps;