import type { PrepareAndScrapeOptions } from '../../prepare/PrepareAndScrapeOptions';
import type { ExecutionTools } from '../ExecutionTools';
/**
 * Note: There is unfortunately no equivalent for this function in the browser environment
 *       because it is not possible automatically detect configured LLM providers
 *       you need to provide them manually BUT you can help by utilities like `$provideScrapersForBrowser`
 *
 * @public exported from `@promptbook/node`
 */
export declare function $provideExecutionToolsForNode(options?: PrepareAndScrapeOptions): Promise<ExecutionTools>;
/**
 * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
 */
