import { AgentTestRunnerNodeDefinition } from '@midscene/core/agent/test'; import { z } from 'zod/v4'; export declare const harmonyAgentTestRunnerNodeDefinitions: readonly AgentTestRunnerNodeDefinition[]; export declare const launchInputSchema: z.ZodObject<{ uri: z.ZodString; }, z.core.$strict>; export declare type LaunchNodeInput = z.infer; export declare const runHdcShellInputSchema: z.ZodObject<{ command: z.ZodString; }, z.core.$strict>; export declare type RunHdcShellNodeInput = z.infer; export declare const terminateInputSchema: z.ZodObject<{ uri: z.ZodString; }, z.core.$strict>; export declare type TerminateNodeInput = z.infer; export { }