import { TwoFactorCodeDto } from './generated/rest-dto/two-factor-code.dto';
import { TwoFactorUserDto } from './generated/rest-dto/two-factor-user.dto';
type GetTimeoutValueOptions = {
    twoFactorCode: TwoFactorCodeDto;
    twoFactorUser: TwoFactorUserDto;
};
export declare class TwoFactorConfiguration {
    getTimeoutValue?: (options: GetTimeoutValueOptions) => Promise<number>;
}
export {};
