import { z } from 'zod'; import type { RemoteConsoleClient } from '../ws-client'; export declare const listSessionsSchema: { status: z.ZodOptional>; }; export declare function listSessionsHandler(client: RemoteConsoleClient): (args: { status?: "all" | "online" | "offline"; }) => Promise<{ content: { type: "text"; text: string; }[]; }>;