import { z } from "zod";
/**
 * Schema for fetching token prices by symbol from Alchemy.
 *
 * Expects an object containing an array of token symbols.
 *
 * Example input:
 * {
 *   symbols: ["ETH", "BTC", "POL"]
 * }
 */
export declare const AlchemyTokenPricesBySymbolSchema: z.ZodObject<{
    symbols: z.ZodArray<z.ZodString, "many">;
}, "strip", z.ZodTypeAny, {
    symbols: string[];
}, {
    symbols: string[];
}>;
