import { Types } from 'mongoose'; import { METHOD_TYPE } from '../phone-verifier.interface'; import { BasePhoneVerifierMethod } from './base-phone-verifier.interface'; export declare class BasePhoneVerifierMethodModel implements BasePhoneVerifierMethod { _id: Types.ObjectId; get id(): any; get createdAt(): any; type: METHOD_TYPE; verifiedAt: Date | null; failures: number; }