import { z } from 'zod'; /** * Tool: set_default_project * Sets the default project for the current session */ export declare const setDefaultProjectInputSchema: z.ZodObject<{ project_uuid: z.ZodString; }, "strip", z.ZodTypeAny, { project_uuid: string; }, { project_uuid: string; }>; export type SetDefaultProjectInput = z.infer; export declare const setDefaultProjectTool: { name: string; description: string; inputSchema: { type: string; properties: { project_uuid: { type: string; description: string; }; }; required: string[]; }; };