import { z } from "zod"; export declare const simulateTransactionInput: z.ZodObject<{ chain: z.ZodDefault>; from: z.ZodOptional; to: z.ZodString; data: z.ZodOptional; value: z.ZodOptional; }, "strip", z.ZodTypeAny, { to: string; chain: string; from?: string | undefined; value?: string | undefined; data?: string | undefined; }, { to: string; from?: string | undefined; value?: string | undefined; data?: string | undefined; chain?: string | undefined; }>; export type SimulateTransactionArgs = z.infer;