import { ParseResult } from '@babel/parser'; import * as t from '@babel/types'; /** * Given the vite config file ast, inserts the import declaration for the @generaltranslation/compiler package */ export declare function addCompilerImport({ ast, cjsEnabled, }: { ast: ParseResult; cjsEnabled: boolean; }): void;