import { LLMAgent } from "../agent/llm-agent.js"; /** * Execute the startup hook command if configured * Returns the output to be added to the system prompt */ export declare function executeStartupHook(): Promise; /** * Create an LLMAgent with startup hook execution and initialization * @param runStartupHook - Whether to run the startup hook (default: true, set false for restored sessions) * @param temperature - Temperature for API requests (0.0-2.0, default: 0.7) * @param maxTokens - Maximum tokens for API responses (positive integer, default: undefined = API default) */ export declare function createLLMAgent(apiKey: string, baseURL?: string, model?: string, maxToolRounds?: number, debugLogFile?: string, runStartupHook?: boolean, temperature?: number, maxTokens?: number): Promise;