import type { HttpClient } from "../core/http.js"; import type { PortfolioResponse, OneclawResponse } from "../types.js"; export interface PortfolioParams { chains?: string; include_tokens?: boolean; } export declare class PortfolioResource { private readonly http; constructor(http: HttpClient); get(params?: PortfolioParams): Promise>; } //# sourceMappingURL=portfolio.d.ts.map