interface GlobalConfig { defaultMode: "light" | "dark"; } export const CONFIG: GlobalConfig = { defaultMode: "dark", };