import type { Abi, Address, ContractFunctionName, EncodeFunctionDataParameters } from "viem"; import type { RawTx } from "../types/index.js"; /** * @dev Creates a raw transaction data to be processed by the TxBatcher * RawTx is a type that contains all the data needed to create different types of batches, * like Multisig Safe batch over governor/timelock, or multisig direct call. * Also RawTx data used to generate Governor execution batch, used to execute queued txs from EOA. * @returns */ export declare function createRawTx | undefined = undefined>(to: Address, parameters: EncodeFunctionDataParameters, description?: string): RawTx;