import { ActionMap } from './types'; /** * Root actions */ export declare enum RootActions { Reset = "RESET", SetVersion = "SET_VERSION" } /** * Root payload */ declare type RootPayload = { /** * Resets the state */ [RootActions.Reset]: null; /** * Sets the Id */ [RootActions.SetVersion]: { /** * Id */ version?: string; }; }; /** * Root action types */ export declare type RootActionTypes = ActionMap[keyof ActionMap]; export {};