import { type Cell } from '@ton/core'; import type { ExecutionInput } from '../types.ts'; import type { CCIPMessage_V1_6_EVM } from '../evm/messages.ts'; /** * Generates an unsigned execute report payload for the TON OffRamp contract. * * @param offRamp - OffRamp contract address. * @param execReport - Execution report containing the CCIP message and proofs. * @param opts - Optional execution options. Gas limit override for execution (0 = no override). * @returns Object with target address, value, and payload cell. */ export declare function generateUnsignedExecuteReport(offRamp: string, execReport: ExecutionInput, opts?: { gasLimit?: number; }): { to: string; body: Cell; }; //# sourceMappingURL=exec.d.ts.map