import * as React from 'react';
import { Action, State } from './store';
export declare const EditorContext: React.Context<EditorContextValue>;
export interface EditorContextValue {
    state: State;
    dispatch: (action: Action) => void;
}
//# sourceMappingURL=editor-context.d.ts.map