import type { LlmToolsConfiguration } from './LlmToolsConfiguration';
/**
 * @@@
 *
 * @@@ .env
 * Note: `$` is used to indicate that this function is not a pure function - it uses filesystem to access `.env` file
 *
 * It looks for environment variables:
 * - `process.env.OPENAI_API_KEY`
 * - `process.env.ANTHROPIC_CLAUDE_API_KEY`
 * - ...
 *
 * @returns @@@
 * @public exported from `@promptbook/node`
 */
export declare function $provideLlmToolsConfigurationFromEnv(): Promise<LlmToolsConfiguration>;
/**
 * Note: [🟢] Code in this file should never be never released in packages that could be imported into browser environment
 */
