import * as $dara from '@darabonba/typescript'; import { Tool } from "./Tool"; export declare class ListToolsOutputV2 extends $dara.Model { /** * @remarks * 当前页的工具详细信息列表 */ items?: Tool[]; /** * @remarks * 当前页码,从 1 开始 * * @example * 1 */ pageNumber?: number; /** * @remarks * 每页返回的工具数量 * * @example * 10 */ pageSize?: number; /** * @remarks * 符合条件的工具总数 * * @example * 100 */ total?: number; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }