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