/** * Tools for managing Replicate predictions. */ import type { Tool } from "@modelcontextprotocol/sdk/types.js"; /** * Tool for creating new predictions. */ export declare const createPredictionTool: Tool; /** * Tool for canceling predictions. */ export declare const cancelPredictionTool: Tool; /** * Tool for getting prediction details. */ export declare const getPredictionTool: Tool; /** * Tool for listing recent predictions. */ export declare const listPredictionsTool: Tool;