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