import { LANGUAGE_TYPE } from "@web3auth/auth"; import { LoginMethodConfig } from "@web3auth/base"; export declare const getAdapterSocialLogins: (adapterName: string, loginMethodsConfig?: LoginMethodConfig) => LoginMethodConfig; export declare function validateImageUrl(url: string): Promise; export declare function getNetworkIconId(ticker: string): Promise; export declare const passwordlessBackendUrl = "https://api-passwordless.web3auth.io"; export declare const getUserCountry: () => Promise<{ country: string; dialCode: string; } | null>; export declare const validatePhoneNumber: (phoneNumber: string) => Promise; export declare const getUserLanguage: (defaultLanguage: string | undefined) => LANGUAGE_TYPE;