import { BigNumberish } from "@ethersproject/bignumber"; import { BytesLike } from "@ethersproject/bytes"; /** * Gnosis Protocol v2 interaction data. */ export interface Interaction { /** * Address of the smart contract to be called in this interaction. */ target: string; /** * Call value in wei for the interaction, allowing Ether to be sent. */ value: BigNumberish; /** * Call data used in the interaction with a smart contract. */ callData: BytesLike; } export declare type InteractionLike = Pick & Partial; /** * Normalizes interaction data so that it is ready to be be ABI encoded. * * @param interaction The interaction to normalize. * @return The normalized interaction. */ export declare function normalizeInteraction(interaction: InteractionLike): Interaction; /** * Normalizes data for many interactions so that they can be ABI encoded. This * calls [`normalizeInteraction`] for each interaction. * * @param interactions The interactions to normalize. * @return The normalized interactions. */ export declare function normalizeInteractions(interactions: InteractionLike[]): Interaction[];