import type { QuoteResponse } from "../types.js";
import type { WalletService } from "./wallet.js";
export declare class GetQuoteActionService {
    private readonly walletService;
    constructor(walletService: WalletService);
    execute(fromToken: string, toToken: string, chainId: number, amount: string): Promise<QuoteResponse>;
    format(quote: QuoteResponse): string;
}
