import { Reducer } from 'redux'; import { IReduxReducer } from './types'; declare enum ActionTypes { SHOULD_DELETE_TOKEN = "SHOULD_DELETE_TOKEN", DID_GET_TOKEN = "DID_GET_TOKEN" } declare const actions: { shouldDeleteToken: () => Readonly<{ type: ActionTypes.SHOULD_DELETE_TOKEN; }>; didGetToken: (payload: string) => Readonly<{ type: ActionTypes.DID_GET_TOKEN; payload: string; }>; }; declare type State = string | undefined; declare const reducer: Reducer; export declare const tokenReducer: IReduxReducer, typeof actions>; export {};