import * as $dara from '@darabonba/typescript'; import { BoundToolApi } from "./BoundToolApi"; export declare class BoundTool extends $dara.Model { apis?: BoundToolApi[]; /** * @remarks * 绑定的 HTTP 请求方法,支持:GET、PUT、POST、PATCH、DELETE、OPTIONS * * @example * POST * * @deprecated */ method?: string; /** * @remarks * 绑定的 URL 路径,用于路由匹配 * * @example * /api/v1/tools * * @deprecated */ path?: string; /** * @remarks * 要绑定的工具名称 * * @example * my-tool */ toolName?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }