import { RecallrAIError } from "./base";
export declare class SessionError extends RecallrAIError {
    constructor(message: string, httpStatus: number);
}
export declare class InvalidSessionStateError extends SessionError {
    constructor(message: string, httpStatus: number);
}
export declare class SessionNotFoundError extends SessionError {
    constructor(message: string, httpStatus: number);
}
