import type { InternalCallTree } from "./internalCallTree"; export declare function solidityLocals(vmtraceIndex: any, internalTreeCall: any, stack: any, memory: any, storageResolver: any, calldata: any, currentSourceLocation: any, cursor: any): Promise<{}>; /** * Finds the current stack position of a variable at a given VM trace step. * Uses the symbolic stack to track where variables have moved due to stack operations. * * @param internalTreeCall - InternalCallTree instance * @param vmtraceIndex - Current VM trace step * @param variable - Variable metadata * @returns Current stack depth (position) of the variable */ export declare function findVariableStackPosition(internalTreeCall: any, vmtraceIndex: number, variable: any): any; export declare function findVariablesStackPosition(internalTreeCall: InternalCallTree, vmtraceIndex: number): { slot: import("./symbolicStack").SymbolicStackSlot; position: number; }[];