import { WarnOption } from "./types"; export interface GlobalStateWithGroupState { _state: T; _rootState: T; } export interface GroupState extends Object { groupDepth: number; } export interface GroupGlobalState extends GlobalStateWithGroupState, WarnOption { _done: boolean; }