import type { AssembleResponseTxn } from "../types.js";
import type { WalletService } from "./wallet.js";
export declare class AssembleService {
private readonly walletService;
constructor(walletService: WalletService);
execute(pathId: string): Promise<AssembleResponseTxn | undefined>;
}