import type { SourceFile } from 'ts-morph'; /** Find export specifier by name (does not include exported variable declaration) */ export declare const findExportSpecifierByName: (sourceFile: SourceFile, name: string) => import("ts-morph").ExportSpecifier | undefined;