export default useModal; declare function useModal(): { Modal: ({ children }: { children: any; }) => JSX.Element; modalOpen: () => void; modalClose: () => void; };