import * as $dara from '@darabonba/typescript'; import { BoundTool } from "./BoundTool"; export declare class BoundConfiguration extends $dara.Model { /** * @remarks * 绑定的工具配置列表,每个配置项定义一个工具与特定 HTTP 路径和方法的绑定关系 */ boundTools?: BoundTool[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }