import { BaseError } from './base-error.js';
import { ErrorParams } from '../types/errors/index.js';
export declare class AuthenticationError extends BaseError {
    message: string;
    params: ErrorParams;
    constructor(message: string, params?: ErrorParams);
}
