export { loadTelefuncFiles }; import type { TelefuncFiles } from '../types.js'; declare function loadTelefuncFiles(runContext: { appRootDir: string | null; telefuncFilesManuallyProvidedByUser: string[] | null; telefuncFilePath: string; }): Promise<{ telefuncFilesLoaded: TelefuncFiles; telefuncFilesAll: string[]; }>;