declare class CheetahError extends Error {
    constructor(message: string);
}
declare class CheetahMemoryError extends CheetahError {
    constructor(message: string);
}
declare class CheetahIOError extends CheetahError {
    constructor(message: string);
}
declare class CheetahInvalidArgumentError extends CheetahError {
    constructor(message: string);
}
declare class CheetahStopIterationError extends CheetahError {
    constructor(message: string);
}
declare class CheetahKeyError extends CheetahError {
    constructor(message: string);
}
declare class CheetahInvalidStateError extends CheetahError {
    constructor(message: string);
}
declare class CheetahRuntimeError extends CheetahError {
    constructor(message: string);
}
declare class CheetahActivationError extends CheetahError {
    constructor(message: string);
}
declare class CheetahActivationLimitError extends CheetahError {
    constructor(message: string);
}
declare class CheetahActivationThrottledError extends CheetahError {
    constructor(message: string);
}
declare class CheetahActivationRefusedError extends CheetahError {
    constructor(message: string);
}
export { CheetahError, CheetahMemoryError, CheetahIOError, CheetahInvalidArgumentError, CheetahStopIterationError, CheetahKeyError, CheetahInvalidStateError, CheetahRuntimeError, CheetahActivationError, CheetahActivationLimitError, CheetahActivationThrottledError, CheetahActivationRefusedError, };
