import type { SourceFile, Symbol } from 'ts-morph'; /** Returns whether one of the sourceFiles contains the symbol/binding */ export declare const hasSymbol: (sourceFiles: SourceFile | SourceFile[], symbol: Symbol) => boolean;