import type { Plugin } from '@elizaos/core'; export * from './types'; /** * Plugin for Anthropic. * * @type {Plugin} * @property {string} name - The name of the plugin. * @property {string} description - The description of the plugin. * @property {Object} config - The configuration object with API keys and model variables. * @property {Function} init - Initializes the plugin with the given configuration. * @property {Function} models - Contains functions for generating text using small and large models. * @property {Function[]} tests - An array of test functions for the plugin. */ export declare const anthropicPlugin: Plugin; export default anthropicPlugin;