import type { GetPromptResult } from "@modelcontextprotocol/sdk/types.js"; import { PromptBase } from "../../../shared/index.js"; import { z } from "zod"; /** * Prompt for creating a new space in a Modyo platform instance * * Guides the user through creating a space with a specific name * * @example * Input: { name: "New Space" } * Output: Message instructing to create a new space with the given name */ export declare class CreateSpacePrompt extends PromptBase<{ name: string; }> { protected config: { name: string; description: string; }; protected getParamsSchema(): z.ZodObject<{ name: z.ZodString; }, z.core.$strip>; generate(params: { name: string; }): Promise; } export declare const Create: Prompt; //# sourceMappingURL=Create.d.ts.map