import { Nodes } from "../nodes/Nodes"; import { Variables } from "./Variables"; import { Functions } from './Functions'; import { tFilterModeOptions, tStack } from "../types"; type tStackCombo = Array; export declare class Processor { private mainNodes; private variablesInstance; private operationsInstance; private functionsInstance; private nodesState; output: tStack[]; constructor(Nodes: Nodes, variables: Variables, functions: Functions); private pathStringSteps; private processPathString; private clonePath; private tests; private postFixPathTypes; processPostfixPath(paths: tStackCombo, filterProps?: tFilterModeOptions): void; reset(): void; } export {}; //# sourceMappingURL=Processor.d.ts.map