import { DiffModeId } from "../../../constants"; import { Action } from "./types"; import actionNames from "../action-names"; type UpdateBaseHostAction = Action; export declare const updateBaseHost: (host: string) => UpdateBaseHostAction; type SetDiffModeAction = Action; export declare const setDiffMode: (payload: SetDiffModeAction['payload']) => SetDiffModeAction; export type SettingsAction = UpdateBaseHostAction | SetDiffModeAction; export {};