import * as React from "react";
import { ProdoPlugin } from "./plugins";
export declare const createStore: <State>(config: {
    initState: State;
}, plugins: ProdoPlugin<any, any, any, any, {}>[]) => {
    store: import("./types").Store<{
        initState: State;
    }, {
        state: State;
    }>;
    Provider: React.ComponentType<{
        children: React.ReactNode;
    }>;
};
//# sourceMappingURL=store.d.ts.map