import { ReactNode } from 'react';
import { CommonUpdaterProps } from '../FlowEditor/container/StoreUpdater/Common';
export interface FlowEditorStoreProviderProps extends CommonUpdaterProps {
    children: ReactNode;
    showDevtools?: boolean;
}
export declare const FlowStoreProvider: import("react").NamedExoticComponent<FlowEditorStoreProviderProps>;
