import { ParseResult } from '@babel/parser'; import * as t from '@babel/types'; /** * Checks if the given AST is exporting the gtCompiler plugin * * Naive check: see if the plugin has been invoked anywhere in the file */ export declare function checkPluginInvocation({ ast, alias, namespaces, }: { ast: ParseResult; alias: string | null; namespaces: string[]; }): boolean;