import { Observable } from 'rxjs'; import { OTPVerifyResult, TOTPGenerateOptions, TOTPVerifyOptions } from '../schemas/interfaces'; export declare class TOTP { static generate: (key: string, options?: TOTPGenerateOptions) => Observable; static verify: (token: string, key: string, options?: TOTPVerifyOptions) => Observable; }