import { Node, SourceFile } from 'typescript';
export declare const hasExports: ({ text }: SourceFile) => boolean;
export declare const getNodes: (item: {
    forEachChild: (cbNode: (node: Node) => void) => void;
}) => Node[];
export declare const hasGlobalImpact: (sourceFile: SourceFile) => boolean;
export declare const getDependencies: (sourceFile: SourceFile) => any[];
