/** * Tool: wait_for_project_ready * Polls a project until it reaches ACTIVE/ready state or times out */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const WaitForProjectReadyInputSchema: z.ZodObject<{ project_uuid: z.ZodString; max_wait_seconds: z.ZodDefault>; poll_interval_seconds: z.ZodDefault>; }, "strip", z.ZodTypeAny, { project_uuid: string; max_wait_seconds: number; poll_interval_seconds: number; }, { project_uuid: string; max_wait_seconds?: number | undefined; poll_interval_seconds?: number | undefined; }>; export type WaitForProjectReadyInput = z.infer; /** * Wait for project to be ready for investigations */ export declare function waitForProjectReady(services: ToolServices, args: unknown): Promise; export {};