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