import { RecallrAIError } from './base';
/**
 * Raised when there is an authentication issue with the API key.
 *
 * This exception is typically raised when the API key is invalid,
 * has been revoked, or doesn't have the necessary permissions.
 */
export declare class AuthenticationError extends RecallrAIError {
    constructor(message?: string, code?: string, httpStatus?: number, details?: Record<string, any>);
}
