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