declare global { interface Window { __REDUX_DEVTOOLS_EXTENSION__: any; } } export interface IDevTools { send: (action: { type: string; payload: any; }, state: any) => void; init: (state: any) => void; } export declare const devToolsConnect: (name: string) => IDevTools | undefined;