/** * Tool: update_project * Updates a project's name, description, or icon style */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const UpdateProjectInputSchema: z.ZodEffects; description: z.ZodOptional; icon_style: z.ZodOptional; }, "strip", z.ZodTypeAny, { project_uuid: string; name?: string | undefined; description?: string | undefined; icon_style?: string | undefined; }, { project_uuid: string; name?: string | undefined; description?: string | undefined; icon_style?: string | undefined; }>, { project_uuid: string; name?: string | undefined; description?: string | undefined; icon_style?: string | undefined; }, { project_uuid: string; name?: string | undefined; description?: string | undefined; icon_style?: string | undefined; }>; export type UpdateProjectInput = z.infer; /** * Update project details */ export declare function updateProject(services: ToolServices, args: unknown): Promise; export {};