import { Dispatch, ReactNode, SetStateAction } from 'react'; export default function Leaflet({ setShow, children, }: { setShow: Dispatch> | (() => void); children: ReactNode; }): JSX.Element;