/// <reference types="react" />
import { ModalProps } from '../modal/Modal';
declare const ModalContext: import("react").Context<{
    open: (props: ModalProps & {
        children: any;
    }) => void;
    location?: {
        pathname: string;
    } | undefined;
}>;
export default ModalContext;
