import { BaseError } from "./BaseError";
/**
 * Indicates lack of certain permissions to perform an operation
 */
export declare class AuthorizationError extends BaseError {
    constructor(message: string);
}
