/** * Tool: wait_for_connection_sync * Polls a connection until it reaches SYNCED state or times out */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ declare const WaitForConnectionSyncInputSchema: z.ZodObject<{ connection_uuid: z.ZodString; max_wait_seconds: z.ZodDefault>; poll_interval_seconds: z.ZodDefault>; }, "strip", z.ZodTypeAny, { connection_uuid: string; max_wait_seconds: number; poll_interval_seconds: number; }, { connection_uuid: string; max_wait_seconds?: number | undefined; poll_interval_seconds?: number | undefined; }>; export type WaitForConnectionSyncInput = z.infer; /** * Wait for connection to sync */ export declare function waitForConnectionSync(services: ToolServices, args: unknown): Promise; export {};