/**
 * Imports a module file (JavaScript or TypeScript) by processing it with esbuild
 * @param filePath - Path to module file (JS or TS)
 * @returns Module exports
 */
export declare function importModule(filePath: string): Promise<any>;
