/** * Return the previously selected (and persisted) choice of theme * */ export declare const getPersistedThemeChoice: () => Promise; /** * Internal logic to switch themes * */ export declare const switchTo: (theme: string, saveNotNeeded?: boolean) => Promise; /** * Switch to the last user choice, if the user so indicated * */ export declare const switchToPersistedThemeChoice: () => Promise; /** * Reset to the default theme * */ export declare const resetToDefault: () => Promise;