import * as $dara from '@darabonba/typescript'; import { CAPConfig } from "./Capconfig"; export declare class CreateToolInput extends $dara.Model { CAPConfig?: CAPConfig; description?: string; /** * @remarks * This parameter is required. */ name?: string; /** * @remarks * This parameter is required. */ schema?: string; /** * @remarks * This parameter is required. */ sourceType?: string; /** * @remarks * This parameter is required. */ toolType?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }