import { IAuthenticate, HttpContext } from "../lifecycle";
/**
 * Authentication for authentication of request
 */
export declare class AuthenticationFilter implements IAuthenticate {
    /**
     * Method for check authentication of request
     * @param context HttpContext Object
     * @returns true, If not authenticated throws UnAuthenticateException
     */
    authenticate(context: HttpContext): boolean;
}
