import { RahaApiError } from "../.."; export declare const ERROR_CODE = "validateMobileNumber.notReal"; export interface NotRealErrorBody { errorCode: typeof ERROR_CODE; mobileNumber: string; } /** * Phone number is valid but doesn't appear to correspond to a real phone number */ export declare class NotRealError extends RahaApiError { readonly errorCode: typeof ERROR_CODE; constructor(mobileNumber: string); } //# sourceMappingURL=NotRealError.d.ts.map