import type { NodePath } from '@babel/traverse';
import type { types as t } from '@babel/core';
import type State from './state';
export default function dependencySatisfies(path: NodePath<t.CallExpression>, state: State): boolean;
