import { KTCustomError } from "./custom-error.js"; declare class ConsumerSubscribeError extends KTCustomError { constructor(message?: string); } declare class KTRetryError 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); } declare class ProducerNotInitializedError extends KTCustomError { constructor(message?: string); } declare class ProducerInitRequiredForDLQError extends KTCustomError { constructor(message?: string); } export { ConsumerSubscribeError, KTRetryError, NoHandlersError, UnableDecreasePartitionsError, ArgumentIsRequired, ProducerNotInitializedError, ProducerInitRequiredForDLQError, };