import { type Aptos } from '@aptos-labs/ts-sdk'; import type { ExecutionInput } from '../types.ts'; import type { CCIPMessage_V1_6_EVM } from '../evm/messages.ts'; /** * Executes as single message report in offramp * * @param provider - Aptos provider instance * @param payer - async Account * @param offRamp - Offramp contract address (with or without `::offramp` suffix) * @param execReport - Aptos uses EVMExtraArgsV2, so same message as EVM v1.6 * @param opts - options like gasLimit override * @returns exec txHash */ export declare function generateUnsignedExecuteReport(provider: Aptos, payer: string, offRamp: string, execReport: ExecutionInput, opts?: { gasLimit?: number; }): Promise>; //# sourceMappingURL=exec.d.ts.map