/** * Tool: create_project * Creates a new NeuBird project */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const CreateProjectInputSchema: z.ZodObject<{ name: z.ZodString; description: z.ZodOptional; icon_style: z.ZodOptional; }, "strip", z.ZodTypeAny, { name: string; description?: string | undefined; icon_style?: string | undefined; }, { name: string; description?: string | undefined; icon_style?: string | undefined; }>; export type CreateProjectInput = z.infer; /** * Create a new project */ export declare function createProject(services: ToolServices, args: unknown): Promise; export {};