import { z } from 'zod'; import type { RemoteConsoleClient } from '../ws-client'; export declare const getSessionInfoSchema: { sessionId: z.ZodString; }; export declare function getSessionInfoHandler(client: RemoteConsoleClient): (args: { sessionId: string; }) => Promise<{ content: { type: "text"; text: string; }[]; isError: boolean; } | { content: { type: "text"; text: string; }[]; isError?: undefined; }>;