import { CreateSliceThemeProperties } from "./theme.types"; /** * This slide represent the slice of the store that will be used to manage the tooltip * @type {object} slice * @param {string} name - The name of the slice * @param {object} initialState - The initial state of the slice * @param {object} reducers - The reducers of the slice * @author: Juan Sebastian Perea [Juanse1595] (https://github.com/Juanse1595) * @author: Juan David Avila Caycedo [JuanDAC] (https://github.com/JuanDAC) */ export declare const createSliceTheme: ({ definedThemes, initial, appName, }: CreateSliceThemeProperties) => {}[];