import type { Address, Hex } from "viem"; import type { SafeSimulationTransaction } from "./types.js"; type InternalTransaction = { data: Hex; operation: 0 | 1; to: Address; value: bigint; }; export declare function encodeInternalTransaction(tx: InternalTransaction): string; export declare function encodeMultiSend(transactions: SafeSimulationTransaction[]): Hex; export declare function decodeSimulationData(revertData: string): { gas: bigint; success: boolean; }; export {}; //# sourceMappingURL=encoding.d.ts.map