import { AuthenticationMethod } from '../../ctx.js'; export type PluginUserConfig = { enable: boolean; /** Secure connexion is Double authentication via sms, fingerprint or pinCode. This will configure nb attemps before locking for a configurable time period. Default: 3 */ nbAttemptsForAuth?: Partial>; /** Secure connexion is Double authentication via sms, fingerprint or pinCode. This will configure the time before unlocking after "nbAttemptsForAuth" fails. Default: 15 */ resetTimeMinutesForSecureConnexion?: number; /** Length of pincode. Default 4 */ pinCodeLength?: number; }; export declare const defaultConfig: { enable: true; nbAttemptsForAuth: { '2FA': number; biometricAuthToken: number; pincode: number; }; pinCodeLength: number; resetTimeMinutesForSecureConnexion: number; };