import { Auth } from "firebase/auth"; declare type UserInfo = { displayName?: string; photoURL?: string; }; declare const UpdateProfileAsync: (auth: Auth, userInfo: UserInfo) => Promise>>; export default UpdateProfileAsync;