import { FunctionCallback, Process } from "../../base"; declare type UserInfo = { readonly displayName?: string; readonly photoURL?: string; }; declare type Param = { value: UserInfo; onCompleted?: () => void; onError?: (error: any) => void; }; declare const UpdateProfileCallback: FunctionCallback; export default UpdateProfileCallback;