export declare const bcryptSaltRounds = 10; export declare type TAuthSettings = { accessSecret: string; refreshSecret: string; cookieSecret: string; serviceSecret: string; expirationAccessTime: number; expirationRefreshTime: number; accessTokenCookieName: string; refreshTokenCookieName: string; maxTokensPerUser: number; resetPasswordAttempts: number; resetPasswordCodeExpirationAccessTime: number; }; export declare const getAuthSettings: (options?: { serverCachePath?: string; }) => Promise; //# sourceMappingURL=auth-settings.d.ts.map