import { Reactotron } from "reactotron-core-client";
import { SagaMonitor } from "redux-saga";
import { PluginConfig } from "./sagaMonitor";
declare const _default: (pluginConfig: PluginConfig) => (reactotron: Reactotron) => {
    features: {
        createSagaMonitor: () => SagaMonitor;
    };
};
export default _default;
declare module "reactotron-core-client" {
    interface Reactotron {
        createSagaMonitor?: () => SagaMonitor;
    }
}
