declare class AuthenticationException extends Error { protected _guards: any[]; protected _redirectTo?: string; constructor(message?: string, guards?: never[], redirectTo?: string); guards(): any[]; redirectTo(): string | undefined; } export default AuthenticationException;