import * as t from '@babel/types'; import type { State } from '../../types'; /** * CompiledImports are checked in the entry file, but not when resolving bindings. * Update state if imported file uses a Compiled API. * * @param ast File we want to traverse. * @param state State of the current plugin run */ export declare const setImportedCompiledImports: (ast: t.File, state: State) => void;