import * as $dara from '@darabonba/typescript'; export declare class ListToolsRequest extends $dara.Model { /** * @remarks * Page number * * @example * 1 */ pageNumber?: number; /** * @remarks * Page size * * @example * 10 */ pageSize?: number; /** * @remarks * Tool Name, supports fuzzy search * * @example * tool-1 */ toolName?: string; /** * @remarks * Tool type * * @example * MCP */ toolType?: string; /** * @remarks * Workspace ID * * @example * workspace-xyz789 */ workspaceId?: string; /** * @remarks * List of workspace IDs, separated by commas * * @example * ws1,ws2 */ workspaceIds?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }