import type { Address, Hex } from "viem"; export type SafeOperation = 0 | 1; export type SafeSimulationTransaction = { data: Hex; operation?: SafeOperation; to: Address; value: bigint; }; export type SafeSimulateBatchParams = { chainId: number; safeAddress: Address; transactions: SafeSimulationTransaction[]; txSizeLimit?: number; gasThresholdPercent?: number; }; export type SafeSimulationResult = { estimatedGas: bigint; success: boolean; }; //# sourceMappingURL=types.d.ts.map