import { EventObject, StateNode, StateValue } from '.'; declare type Configuration = Iterable>; declare type AdjList = Map, Array>>; export declare function getConfiguration(prevStateNodes: Iterable>, stateNodes: Iterable>): Iterable>; export declare function getAdjList(configuration: Configuration): AdjList; export declare function getValue(rootNode: StateNode, configuration: Configuration): StateValue; export {};