import { User } from "firebase/auth"; import { FunctionCallback, Process } from "../../base"; declare type Param = { checkEmailVerified?: boolean; onCompleted?: (data: User | null) => void; onError?: (error: any) => void; }; declare const GetAuthCallback: FunctionCallback; export default GetAuthCallback;