import { Preference } from '../themes'; export declare enum ThemeActions { update = "theme.update" } export interface ThemeAction { type: ThemeActions.update; key: keyof Preference; val: any; } export declare function updateTheme(key: keyof Preference, val: any): ThemeAction;