import { Db } from "mongodb"; /** The name of the security settins. */ export declare const SECURITY_SETTINGS_NAME = "ADMIN_SECURITY_SETTINGS"; /** The admin security settings. */ export interface Settings { SWIRL_LOGIN_LIMIT: number; SWIRL_SESSION_TTL: number; SWIRL_FORCE_SSL: boolean; } /** Loads the settings */ export declare function loadSecuritySettings(db: Db): Promise;