import React from 'react'; import Emulator from '../eps/emulator'; declare const actiontypes: { UPDATE_TABLE: string; }; declare type StateType = { table: string; emulator?: Emulator; }; declare type ActionType = { type: string; table: string; }; declare const DashboardReducer: (state: StateType, action: ActionType) => StateType; declare type MixStateAndDispatch = { state: StateType; dispatch?: React.Dispatch; }; export { DashboardReducer, actiontypes, MixStateAndDispatch, ActionType };