import type { ThemingProps } from "../../types"; import type { ModalTheme } from "./Modal"; export interface ModalContextValue extends ThemingProps { popup?: boolean; dismissible?: boolean; setHeaderId: (id: string | undefined) => void; onClose?: () => void; } export declare const ModalContext: import("react").Context; export declare function useModalContext(): ModalContextValue;