import * as p_di from "../../../interface/data.js"; import * as p_i from "../../../interface/refiner.js"; export declare namespace acyclic { const not_set: () => p_i.lookup.Acyclic; const from_resolved_dictionary: (dict: p_di.Dictionary) => p_i.lookup.Acyclic; } export declare namespace cyclic { const not_set: () => p_i.lookup.Cyclic; } export declare namespace stack { const empty: () => p_i.lookup.Stack; const push: (stack: p_i.lookup.Stack, item: p_i.lookup.Acyclic) => p_i.lookup.Stack; }