import { z } from "zod"; export declare const getBalanceParametersSchema: z.ZodObject<{ address: z.ZodString; tokenAddress: z.ZodOptional; }, "strip", z.ZodTypeAny, { address: string; tokenAddress?: string | undefined; }, { address: string; tokenAddress?: string | undefined; }>; export declare const sendTokenParametersSchema: z.ZodObject<{ recipient: z.ZodString; baseUnitsAmount: z.ZodString; tokenAddress: z.ZodOptional; }, "strip", z.ZodTypeAny, { recipient: string; baseUnitsAmount: string; tokenAddress?: string | undefined; }, { recipient: string; baseUnitsAmount: string; tokenAddress?: string | undefined; }>; export declare const getTokenInfoBySymbolParametersSchema: z.ZodObject<{ symbol: z.ZodString; }, "strip", z.ZodTypeAny, { symbol: string; }, { symbol: string; }>; export declare const convertToBaseUnitsParametersSchema: z.ZodObject<{ amount: z.ZodString; tokenAddress: z.ZodOptional; }, "strip", z.ZodTypeAny, { amount: string; tokenAddress?: string | undefined; }, { amount: string; tokenAddress?: string | undefined; }>; export declare const convertFromBaseUnitsParametersSchema: z.ZodObject<{ amount: z.ZodString; tokenAddress: z.ZodOptional; }, "strip", z.ZodTypeAny, { amount: string; tokenAddress?: string | undefined; }, { amount: string; tokenAddress?: string | undefined; }>;