import type { WalletService } from "./wallet.js";
export declare class AgentPositionsService {
    private walletService;
    constructor(walletService: WalletService);
    getPositions(address: string | undefined): Promise<any>;
    formatPositions(positions: Awaited<ReturnType<AgentPositionsService["getPositions"]>>): string;
}
