import { KTCustomError } from "./custom-error.js";
declare class ConsumerSubscribeError extends KTCustomError {
    constructor(message?: string);
}
declare class KTRetryError extends KTCustomError {
    constructor(message?: string);
}
declare class NoLocalHandlersError extends KTCustomError {
    constructor(message?: string);
}
declare class NoHandlersError extends KTCustomError {
    constructor(message?: string);
}
declare class UnableDecreasePartitionsError extends KTCustomError {
    constructor(message?: string);
}
declare class ArgumentIsRequired extends KTCustomError {
    constructor(argName?: string);
}
export { ConsumerSubscribeError, KTRetryError, NoLocalHandlersError, NoHandlersError, UnableDecreasePartitionsError, ArgumentIsRequired, };
