/// <reference types="react" />
import { FlowEditorAppProps } from './FlowEditor';
import { StoreUpdaterProps } from './StoreUpdater';
export interface FlowEditorProps extends StoreUpdaterProps, FlowEditorAppProps {
    devtools?: boolean;
}
declare const FlowEditor: import("react").ForwardRefExoticComponent<FlowEditorProps & import("react").RefAttributes<any>>;
export default FlowEditor;
