import React from "react";
import { SwapParams } from "../types/swap";
import { ThemeMode, CornerRadius } from "../types/theme";
interface WalletModalProps {
    isOpen: boolean;
    onClose: () => void;
    walletSDKKey: string;
    swapParams?: SwapParams;
    showMessagePopup?: boolean;
    messageType?: "success" | "error";
    transactionId?: string;
    theme?: ThemeMode;
    cornerRadius?: CornerRadius;
    primaryColor?: string;
    brandLogo?: string;
    isGoogleAuth?: boolean;
    isTwitterAuth?: boolean;
    isPasskeyAuth?: boolean;
    fontFamily?: string;
    showEnclave?: boolean;
}
export declare const WalletModal: React.FC<WalletModalProps>;
export {};
