/** * Tool: get_session_link * Returns the UI link for a specific investigation session */ import { ToolServices } from './index.js'; import { z } from 'zod'; /** * Input validation schema */ export declare const GetSessionLinkInputSchema: z.ZodObject<{ session_uuid: z.ZodString; project_uuid: z.ZodOptional; }, "strip", z.ZodTypeAny, { session_uuid: string; project_uuid?: string | undefined; }, { session_uuid: string; project_uuid?: string | undefined; }>; export type GetSessionLinkInput = z.infer; /** * Get the UI link for a session */ export declare function getSessionLink(services: ToolServices, args: unknown): Promise;