import { z } from 'zod'; export declare const ReadLogsSchema: z.ZodObject<{ source: z.ZodEnum<["console", "android", "ios", "system"]>; lines: z.ZodDefault; filter: z.ZodOptional; since: z.ZodOptional; windowId: z.ZodOptional; appIdentifier: z.ZodOptional>; }, "strip", z.ZodTypeAny, { lines: number; source: "android" | "ios" | "console" | "system"; filter?: string | undefined; windowId?: string | undefined; appIdentifier?: string | number | undefined; since?: string | undefined; }, { source: "android" | "ios" | "console" | "system"; filter?: string | undefined; lines?: number | undefined; windowId?: string | undefined; appIdentifier?: string | number | undefined; since?: string | undefined; }>; export interface ReadLogsOptions { source: 'console' | 'android' | 'ios' | 'system'; lines?: number; filter?: string; since?: string; windowId?: string; appIdentifier?: string | number; } export declare function readLogs(options: ReadLogsOptions): Promise;