import type { LlmExecutionTools } from '../../execution/LlmExecutionTools';
import type { OllamaExecutionToolsOptions } from './OllamaExecutionToolsOptions';
/**
 * Execution Tools for calling Ollama API
 *
 * @public exported from `@promptbook/ollama`
 */
export declare const createOllamaExecutionTools: ((options: OllamaExecutionToolsOptions) => LlmExecutionTools) & {
    packageName: string;
    className: string;
};
