import { Request } from 'express'; export declare const AUTH_CALLBACKS = "AuthCallbacks"; export interface AuthCallbacks { buildUserRolesList?(authType: string, profileData: any): string[]; buildUserPropertiesObject?(authType: string, profileData: any): any; buildAuthenticationOptions?(authType: string, req: Request, defaultAuthenticateOptions: any): any; getLoginIdentifier?(authType: string, authToken: any): string; }