import { z } from "zod";
/**
 * Input schema for request faucet funds action.
 */
export declare const RequestFaucetFundsV2Schema: z.ZodObject<{
    assetId: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    assetId?: string | undefined;
}, {
    assetId?: string | undefined;
}>;
/**
 * Input schema for swap tokens action.
 */
export declare const SwapSchema: z.ZodObject<{
    fromAssetId: z.ZodString;
    toAssetId: z.ZodString;
    amount: z.ZodString;
    network: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
    amount: string;
    fromAssetId: string;
    toAssetId: string;
    network?: string | undefined;
}, {
    amount: string;
    fromAssetId: string;
    toAssetId: string;
    network?: string | undefined;
}>;
