import { tStack, tStackMix, tStackOperator, tStackParent } from "../types"; export declare class PostfixStack { operators: tStackOperator[]; output: tStackMix[]; parentOutput: tStackParent; arguments: any; private outputIndex; constructor(); reset(): void; cache: { output: (symbol: string) => void; restore: (cacheId: string, type?: tStack['type']) => void; merge: (cacheId: string) => void; argument: (cacheId: string) => void; }; } //# sourceMappingURL=Stack.d.ts.map