import { ModuleInfo } from '../../model/api';
/**
 * Gets module info from a file
 * @param filePath Module file path
 * @param apiSourcePath API source path (used for relative path)
 */
declare const getModuleInfo: (filePath: string, apiSourcePath: string) => Promise<ModuleInfo | null>;
export default getModuleInfo;
