import { ThemeAction } from '../actions/theme'; import { Preference } from '../themes'; export declare const preference: (state: Preference, action: ThemeAction) => { compact: any; theme: "dark" | "light"; } | { theme: any; compact: boolean; };