import type { ThemeSetting } from './ThemeSetting';
import type { ThemeValue } from './ThemeValue';
export type StoredConfig = {
    setting: ThemeSetting;
    media: ThemeValue;
};
