import type { Knex } from 'knex'; import type { AbstractServiceOptions, PrimaryKey } from '../types/index.js'; import { ItemsService } from './items.js'; export declare class TFAService { knex: Knex; itemsService: ItemsService; constructor(options: AbstractServiceOptions); verifyOTP(key: PrimaryKey, otp: string, secret?: string): Promise; generateTFA(key: PrimaryKey): Promise>; enableTFA(key: PrimaryKey, otp: string, secret: string): Promise; disableTFA(key: PrimaryKey): Promise; }