import { ExpressionNode } from "../../common-types";
import { AccessHandlerFn } from "../BaseHandler";
/**
 * Specialized node type for variable access
 */
interface VariableExpressionNode extends ExpressionNode {
    nodeType: "variable";
    variableName: string;
}
/**
 * Handler for variable access contexts
 */
declare const handleVariable: AccessHandlerFn<VariableExpressionNode>;
export { handleVariable, type VariableExpressionNode };
//# sourceMappingURL=VariableHandler.d.ts.map