export interface BruteforceGuardConfiguration {
    attemptMinutesByLogin: number;
    attemptMinutesByIp: number;
    attemptCountByLogin: number;
    attemptCountByIp: number;
    loginField: string;
}
