import { z } from 'zod'; /** * Schema for the login tool arguments */ export declare const LoginToolArgsSchema: z.ZodObject<{ launchBrowser: z.ZodDefault>; }, z.core.$strip>; /** * Type definition from the LoginToolArgsSchema Zod schema */ export type LoginToolArgsType = z.infer; /** * Schema for the status tool arguments (empty object as it takes no arguments) */ export declare const StatusToolArgsSchema: z.ZodObject<{}, z.core.$strip>; /** * Type definition from the StatusToolArgsSchema Zod schema */ export type StatusToolArgsType = z.infer; /** * Schema for the List Accounts tool arguments (empty object as it takes no arguments) */ export declare const ListAccountsArgsSchema: z.ZodObject<{}, z.core.$strip>; /** * Type definition from the ListAccountsArgsSchema Zod schema */ export type ListAccountsArgsType = z.infer; /** * Schema for the Execute Command tool arguments */ export declare const ExecCommandToolArgs: z.ZodObject<{ accountId: z.ZodString; roleName: z.ZodString; region: z.ZodOptional; command: z.ZodString; }, z.core.$strip>; /** * Type definition from the ExecCommandToolArgs Zod schema */ export type ExecCommandToolArgsType = z.infer; /** * Schema for the EC2 Execute Command tool arguments */ export declare const Ec2ExecCommandToolArgs: z.ZodObject<{ instanceId: z.ZodString; accountId: z.ZodString; roleName: z.ZodString; region: z.ZodOptional; command: z.ZodString; }, z.core.$strip>; /** * Type definition from the Ec2ExecCommandToolArgs Zod schema */ export type Ec2ExecCommandToolArgsType = z.infer;