// globals.d.ts /* eslint-disable no-var */ import { Options, Variable as VariableType } from 'types/variable'; declare global { var useTheme: (filePath: string) => void; var getSystrayItems: () => string; var isWindowVisible: (windowName: string) => boolean; var clearAllNotifications: () => Promise; var globalWeatherVar: VariableType; var options: Options; var removingNotifications: VariableType; } export {};