import { RawAppAuthenticator } from "../RawAppAuthenticator"; import { RawAuthenticator } from "../RawAuthenticator"; import { RawGoogleAuthenticator } from "../RawGoogleAuthenticator"; import { RawOptionalEmailAuthenticator } from "../RawOptionalEmailAuthenticator"; import { RawSmsAuthenticator } from "../RawSmsAuthenticator"; export declare class RawAuthenticatorUtils { static isAppAuthenticator(rawAuthenticator: RawAuthenticator): rawAuthenticator is RawAppAuthenticator; static isGoogleAuthenticator(rawAuthenticator: RawAuthenticator): rawAuthenticator is RawGoogleAuthenticator; static isSmsAuthenticator(rawAuthenticator: RawAuthenticator): rawAuthenticator is RawSmsAuthenticator; static isEmailAuthenticator(rawAuthenticator: RawAuthenticator): rawAuthenticator is RawOptionalEmailAuthenticator; } //# sourceMappingURL=RawAuthenticatorUtils.d.ts.map