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