import { z } from "zod";
/**
 * Input schema for getting wallet portfolio.
 */
export declare const GetWalletPortfolioSchema: z.ZodObject<{
    walletAddress: z.ZodString;
}, "strip", z.ZodTypeAny, {
    walletAddress: string;
}, {
    walletAddress: string;
}>;
