import Actions from '../actions'; export declare type Action = Actions.StartApp | Actions.ShutdownApp; export declare type State = boolean; export default function updateIsRunning(state: State, action: Action): State;