import { ExpressionNode } from "../../common-types";
import { FieldDefinition } from "../../utils/fieldMaps";
import { AccessHandlerFn } from "../BaseHandler";
/**
 * Specialized node type for stat access
 */
interface StatExpressionNode extends ExpressionNode {
    field: FieldDefinition;
    nodeType: "stat";
}
/**
 * Handler for stat access contexts
 */
declare const handleStat: AccessHandlerFn<StatExpressionNode>;
export { handleStat, type StatExpressionNode };
//# sourceMappingURL=StatHandler.d.ts.map