import { Action } from '../Action.js';
import { UnauthorizedError } from './UnauthorizedError.js';
/**
 * Thrown when authorization is required thought @CurrentUser decorator.
 */
export declare class AuthorizationRequiredError extends UnauthorizedError {
    name: string;
    constructor(action: Action);
}
