import * as bt from '@babel/types';
import { ImportedVariableSet } from './resolveRequired';
export default function (ast: bt.File, variableFilter: string[]): {
    variables: ImportedVariableSet;
    exportAll: boolean;
};
