import * as React from 'react'; import { Action, IModalsState } from './draggableModalReducer'; export interface IDraggableModalContextMethods { dispatch: (action: Action) => void; } export interface IDraggableModalContextValue extends IDraggableModalContextMethods { state: IModalsState; } export declare const DraggableModalContext: React.Context;