import React from 'react'; export interface ModalContextProps { isOpen: boolean; open: (content: React.ReactNode, option?: { width?: string; isPadding?: boolean; }) => void; close: () => void; width?: string; } export declare const ModalContext: React.Context; export declare function ModalContextProvider({ children }: { children: React.ReactNode; }): import("react/jsx-runtime").JSX.Element;