import { VerificationResponse, PhoneVerificationRequest as BasePhoneVerificationRequest } from '../verification-adapter.interface'; export type PhoneVerificationRequest = BasePhoneVerificationRequest; export interface PhoneAdvanceVerificationRequest extends PhoneVerificationRequest { includeCarrierInfo?: boolean; } export interface PhoneVerificationData { phoneNumber: string; carrier?: string; lineType?: string; status?: string; ownerName?: string; network?: string; [key: string]: any; } export interface IPhoneVerificationService { verifyPhoneNumber(data: PhoneVerificationRequest): Promise>; verifyPhoneNumberAdvance?(data: PhoneAdvanceVerificationRequest): Promise>; isReady(): boolean; } //# sourceMappingURL=phone-verification.interface.d.ts.map