import { z } from "zod"; /** * Output for emulator-device list operation */ export declare const EmulatorListOutput: z.ZodObject<{ available: z.ZodArray; running: z.ZodArray; }, z.core.$strip>; /** * Output for emulator-device create operation */ export declare const EmulatorCreateOutput: z.ZodObject<{ created: z.ZodString; }, z.core.$strip>; /** * Output for emulator-device start operation */ export declare const EmulatorStartOutput: z.ZodObject<{ started: z.ZodString; emulatorId: z.ZodString; autoSelected: z.ZodLiteral; }, z.core.$strip>; /** * Output for emulator-device kill operation */ export declare const EmulatorKillOutput: z.ZodObject<{ killed: z.ZodString; }, z.core.$strip>; /** * Output for emulator-device wipe operation */ export declare const EmulatorWipeOutput: z.ZodObject<{ wiped: z.ZodString; }, z.core.$strip>; /** * Output for emulator-device snapshot-save operation */ export declare const EmulatorSnapshotSaveOutput: z.ZodObject<{ saved: z.ZodString; emulatorId: z.ZodString; }, z.core.$strip>; /** * Output for emulator-device snapshot-load operation */ export declare const EmulatorSnapshotLoadOutput: z.ZodObject<{ loaded: z.ZodString; emulatorId: z.ZodString; }, z.core.$strip>; /** * Output for emulator-device snapshot-list operation */ export declare const EmulatorSnapshotListOutput: z.ZodObject<{ snapshots: z.ZodArray; emulatorId: z.ZodString; }, z.core.$strip>; /** * Output for emulator-device snapshot-delete operation */ export declare const EmulatorSnapshotDeleteOutput: z.ZodObject<{ deleted: z.ZodString; emulatorId: z.ZodString; }, z.core.$strip>; /** * Union of all emulator-device tool outputs */ export declare const EmulatorDeviceOutput: z.ZodUnion; running: z.ZodArray; }, z.core.$strip>, z.ZodObject<{ created: z.ZodString; }, z.core.$strip>, z.ZodObject<{ started: z.ZodString; emulatorId: z.ZodString; autoSelected: z.ZodLiteral; }, z.core.$strip>, z.ZodObject<{ killed: z.ZodString; }, z.core.$strip>, z.ZodObject<{ wiped: z.ZodString; }, z.core.$strip>, z.ZodObject<{ saved: z.ZodString; emulatorId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ loaded: z.ZodString; emulatorId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ snapshots: z.ZodArray; emulatorId: z.ZodString; }, z.core.$strip>, z.ZodObject<{ deleted: z.ZodString; emulatorId: z.ZodString; }, z.core.$strip>]>; export type EmulatorListOutputType = z.infer; export type EmulatorCreateOutputType = z.infer; export type EmulatorStartOutputType = z.infer; export type EmulatorKillOutputType = z.infer; export type EmulatorWipeOutputType = z.infer; export type EmulatorSnapshotSaveOutputType = z.infer; export type EmulatorSnapshotLoadOutputType = z.infer; export type EmulatorSnapshotListOutputType = z.infer; export type EmulatorSnapshotDeleteOutputType = z.infer;