import { AuthOptions, Middleware } from './interfaces'; /** * Tries to get SSO information from browser. If success, the SSO info * is stored under req.sso * * @export * @param {AuthOptions} [options={}] * @returns {RequestHandler} */ export declare function auth(options?: Partial): Middleware;