import { compose, Store } from 'redux'; type ClarityType = (...args: string[]) => T; declare global { interface Window { store: Store; clarity: ClarityType; analytics: Record; __REDUX_DEVTOOLS_EXTENSION_COMPOSE__: typeof compose; } } export {};