import * as t from '@babel/types'; /** * Get the callee name from an expression: ... = useGT(); * Rule of thumb, only call on expressions with parentheses */ export declare function getCalleeNameFromExpression(expr: t.Expression): { namespaceName: string | null; functionName: string | null; };