import { UserProfile } from "."; export { camelize, decamelize } from "@credify/crypto"; declare const openPopupWindow: (url: string, newWindow?: Window) => Window | null; declare const formatPhoneNumber: (phoneNumber: string) => string; declare const formatCountryCode: (countryCode: string) => string; declare const parseUserClaims: (jsonObj: object) => UserProfile | null; /** * Sends a request to the specified url from a form. this will be redirected by backend. * @param path sends a request to the specified url from a form. this will change the window location. * @param params data need to pass when submitting form * @param method method */ declare function submitCustomForm(path: string, params: any, method?: string): void; export { openPopupWindow, formatPhoneNumber, formatCountryCode, parseUserClaims, submitCustomForm, };