import { RecallrAIError } from './base';
/**
 * Base class for server-related exceptions.
 */
export declare class ServerError extends RecallrAIError {
    constructor(message?: string, code?: string, httpStatus?: number, details?: Record<string, any>);
}
/**
 * Raised when the RecallrAI API encounters an internal server error.
 *
 * This exception is typically raised when the API returns a 5xx error code.
 */
export declare class InternalServerError extends ServerError {
    constructor(message?: string, code?: string, httpStatus?: number, details?: Record<string, any>);
}
