export interface InvokeResult { ok: boolean; output?: string; status?: number; durationMs?: number; error?: string; errorCode?: "unreachable" | "timeout" | "invalid_response" | "http_error"; } export declare function handleInvoke(url: string, input?: string, options?: { timeoutMs?: number; method?: string; headers?: Record; }): Promise; //# sourceMappingURL=invoke.d.ts.map