import type { IChannelWrapper, IHandlerWrapper } from '../../interface';
import { AutoAckEnum } from '../../interface';
import { AbstractHandleWrapperStrategy } from './AbstractHandleWrapperStrategy';
export declare class AckAndNackStrategy extends AbstractHandleWrapperStrategy {
    private addAutoAck;
    readonly strategy = AutoAckEnum.ACK_AND_NACK;
    process(handlerWrapper: IHandlerWrapper, channelWrapper: IChannelWrapper): void;
}
