// @ts-nocheck import { TypePasswordlessSmsDeliveryInput } from "../../../types"; import { SmsDeliveryInterface } from "../../../../../ingredients/smsdelivery/types"; import { UserContext } from "../../../../../types"; export default class BackwardCompatibilityService implements SmsDeliveryInterface { constructor(); sendSms: (input: TypePasswordlessSmsDeliveryInput & { userContext: UserContext; }) => Promise; }