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