import { ParseResult } from '@babel/parser'; import * as t from '@babel/types'; export interface CheckCompilerImportResult { hasCompilerImport: boolean; alias: string | null; namespaces: string[]; } /** * Given the vite config file ast, checks if the @generaltranslation/compiler package is imported. * If it is imported, capture any aliases or namespace. * * Does not handle: * - Nested expressions */ export declare function checkCompilerImport(ast: ParseResult): CheckCompilerImportResult;