import { BabelFileResult, types as t } from '@babel/core'; import { StrictOptions } from '../types'; export default function evaluate(path: t.Node, filename: string, transformer?: (text: string) => BabelFileResult | null, options?: StrictOptions): { value: any; dependencies: string[]; };