Variable storeConst

store: EnhancedStore<
    {
        connection: ConnectionState;
        crm: CrmState & PersistPartial;
        messages: MessagesState & PersistPartial;
        organizations: OrganizationsState;
        persons: PersonsState;
        reasons: ReasonsState;
        sector: SectorState & PersistPartial;
        service: ServiceState;
        session: SessionState;
        settings: SettingsState & PersistPartial;
        tags: TagsState;
        tasks: TasksState;
        template: TemplateState;
        user: UserState & PersistPartial;
        users: UsersState;
        workspace: WorkspaceState & PersistPartial;
    },
    UnknownAction,
    Tuple<
        [
            StoreEnhancer<
                {
                    dispatch: ThunkDispatch<
                        {
                            connection: ConnectionState;
                            crm: CrmState & PersistPartial;
                            messages: MessagesState & PersistPartial;
                            organizations: OrganizationsState;
                            persons: PersonsState;
                            reasons: ReasonsState;
                            sector: SectorState & PersistPartial;
                            service: ServiceState;
                            session: SessionState;
                            settings: SettingsState & PersistPartial;
                            tags: TagsState;
                            tasks: TasksState;
                            template: TemplateState;
                            user: UserState & PersistPartial;
                            users: UsersState;
                            workspace: WorkspaceState & PersistPartial;
                        },
                        undefined,
                        UnknownAction,
                    >;
                },
            >,
            StoreEnhancer,
        ],
    >,
> = ...