import { AnyAction } from "redux"; import { NodeApi } from "../interfaces/node-api"; export interface IdObj { id: string; } export declare type Identity = string | IdObj | null; export declare type BoolFunc = (data: T) => boolean; export declare type ActionTypes AnyAction; }> = ReturnType; export declare type SelectOptions = { multi?: boolean; contiguous?: boolean; }; export declare type NodesById = { [id: string]: NodeApi; };