import { RecallrAIError } from "./base";
export declare class ServerError extends RecallrAIError {
    constructor(message: string, httpStatus: number);
}
export declare class InternalServerError extends ServerError {
    constructor(message: string, httpStatus: number);
}
export declare class RateLimitError extends ServerError {
    constructor(message: string, httpStatus: number);
}
