import * as react_jsx_runtime from 'react/jsx-runtime'; import { PropsWithChildren } from 'react'; declare const useModal: (component: React.FC) => { isOpen: boolean; openModal: () => void; closeModal: () => void; }; declare const ModalProvider: ({ children }: PropsWithChildren) => react_jsx_runtime.JSX.Element; export { ModalProvider, useModal };