import { VerifyOTPRequest } from "../../models/request/account/verifyOTPRequest"; export abstract class UserVerificationApiServiceAbstraction { postAccountVerifyOTP: (request: VerifyOTPRequest) => Promise; postAccountRequestOTP: () => Promise; }