export { getExportList }; export type { ExportList }; type ExportList = { exportName: string; localName: string | null; }[]; declare function getExportList(src: string): Promise;