import * as t from '@babel/types'; /** * Lightweight name-based check for whether an expression tree contains * a derive()/declareStatic() call. Does NOT validate imports or scope — * used as a fast gate before full resolution via handleDerivation(). */ export declare function containsDeriveCall(expr: t.Expression): boolean;