importtype { NodePath } from'@babel/traverse';
/**
* Checks if the input Identifier is part of a destructuring Assignment
* and the name of the property key matches the input name
*/exportdefaultfunctionisDestructuringAssignment(path: NodePath, name: string): boolean;