import type { ReadResourceResult } from "@modelcontextprotocol/sdk/types.js"; import { ResourceBase } from "../../../shared/index.js"; import { z } from "zod"; /** * Static resource that lists the configured platform * * Returns information about the single configured platform. * * @example * URI: platforms://list * Returns: Platform name and URL */ export declare class PlatformsResource extends ResourceBase { protected config: { name: string; uriTemplate: string; description: string; mimeType: string; }; protected getParamsSchema(): z.ZodVoid; read(uri: URL): Promise; } export declare const Platforms: Resource; //# sourceMappingURL=PlatformsClass.d.ts.map