import { type TransactionRequest } from 'ethers'; import type { ChainFamily } from '../types.ts'; /** * Type representing a set of unsigned EVM transactions */ export type UnsignedEVMTx = { family: typeof ChainFamily.EVM; transactions: Pick[]; }; /** * Convert a Result or Promise to an object * @internal */ export declare function resultToObject(o: T): T; //# sourceMappingURL=types.d.ts.map