import { AnyAction, Reducer } from '@reduxjs/toolkit'; /** * This function is used to create the store of the application * @type {Store} store - The store of the application * @returns {Store} store - The store of the application * @author: Juan Sebastian Perea [Juanse1595] (https://github.com/Juanse1595) * @author: Juan David Avila Caycedo [JuanDAC] (https://github.com/JuanDAC) * @version 1.0.0 * @example */ export declare type StoreConfig = { reducer: { navbar: Reducer; tooltip: Reducer; auth: Reducer; layout: Reducer; theme: Reducer; [api: string]: Reducer; }; middleware: (getDefaultMiddleware: Function) => unknown; };