import { AuthenticatorType } from "../../entities"; import { RawAuthenticator } from "./RawAuthenticator"; export interface RawSmsAuthenticator extends RawAuthenticator { type: AuthenticatorType.Sms; phone_number: string; } //# sourceMappingURL=RawSmsAuthenticator.d.ts.map