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