export type Theme = 'dark' | 'light'; export type ThemeMode = 'dark' | 'light' | 'system'; export type ThemeSet = Record | ((theme: Theme) => T) | [T, T];