import { z } from "zod"; /** * Output for adb-app install operation */ export declare const AdbAppInstallOutput: z.ZodObject<{ installed: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>; /** * Output for adb-app uninstall operation */ export declare const AdbAppUninstallOutput: z.ZodObject<{ uninstalled: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>; /** * Output for adb-app launch operation */ export declare const AdbAppLaunchOutput: z.ZodObject<{ launched: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>; /** * Output for adb-app stop operation */ export declare const AdbAppStopOutput: z.ZodObject<{ stopped: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>; /** * Output for adb-app clear-data operation */ export declare const AdbAppClearDataOutput: z.ZodObject<{ cleared: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>; /** * Output for adb-app list operation */ export declare const AdbAppListOutput: z.ZodObject<{ packages: z.ZodArray; count: z.ZodNumber; totalCount: z.ZodNumber; hasMore: z.ZodBoolean; offset: z.ZodNumber; limit: z.ZodNumber; cacheId: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>; /** * Union of all adb-app tool outputs */ export declare const AdbAppOutput: z.ZodUnion, z.ZodObject<{ uninstalled: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ launched: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ stopped: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ cleared: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ packages: z.ZodArray; count: z.ZodNumber; totalCount: z.ZodNumber; hasMore: z.ZodBoolean; offset: z.ZodNumber; limit: z.ZodNumber; cacheId: z.ZodString; deviceId: z.ZodString; }, z.core.$strip>]>; export type AdbAppInstallOutputType = z.infer; export type AdbAppUninstallOutputType = z.infer; export type AdbAppLaunchOutputType = z.infer; export type AdbAppStopOutputType = z.infer; export type AdbAppClearDataOutputType = z.infer; export type AdbAppListOutputType = z.infer;