import { User } from "firebase/auth"; import { FunctionCallback, Process } from "../../base"; declare type Param = { value: { email: string; password: string; }; onCompleted?: (data: User) => void; onError?: (error: any) => void; }; declare const CreateUserWithEAPCallback: FunctionCallback; export default CreateUserWithEAPCallback;