import { CurrentTheme } from '.'; /** * Represents a theme that can be persisted in storage or user preferences. * Includes an 'auto' option to follow system-level theme settings. */ export type PersistedTheme = CurrentTheme | 'auto';