import { BaseStore, DevtoolsConfig, DevtoolsStore } from "../../utils/types"; export declare function devtoolsImpl>(store: S, config?: DevtoolsConfig): { dispatch: (actionType: string, payload?: any) => void; __devtoolsUnsubscribe: () => void; }; /** * Enhances a store with Redux DevTools integration * @param store The base store to enhance * @param config Configuration options for DevTools * @returns Enhanced store with DevTools integration */ export declare function devtools>(store: S, config?: DevtoolsConfig): DevtoolsStore;