/** * @license * Copyright 2025 Qwen * SPDX-License-Identifier: Apache-2.0 */ import type { ContentGenerator, ContentGeneratorConfig } from '../contentGenerator.js'; import type { Config } from '../../config/config.js'; export { AnthropicContentGenerator } from './anthropicContentGenerator.js'; export declare function createAnthropicContentGenerator(contentGeneratorConfig: ContentGeneratorConfig, cliConfig: Config): ContentGenerator;