export declare enum MODAL_PAGES { HOME = "home", WALLET = "wallet", SUCCESS = "success", ERROR = "error" } export declare const socialAuth: { GOOGLE: string; DISCORD: string; }; export declare const authMethods: { EMAIL: string; WALLET: string; SMS: string; }; export declare enum SOCIAL_AUTH { GOOGLE = "google", DISCORD = "discord" } export declare enum AUTH_METHODS { EMAIL = "email", WALLET = "wallet", SMS = "sms" } export type Config = { env: "staging" | "prod"; chainId: number; aarcApiKey: string; callbacks: { onSuccess: (data?: any) => void; onError: (data?: any) => void; onClose: () => void; onOpen: () => void; }; appearance: { logoUrl: string; themeColor: string; textColor: string; }; authMethods: string[]; socialAuth: string[]; };