declare class CustomerSubscriber {
    private readonly manager_;
    private readonly customerService_;
    private readonly bonusService_;
    private readonly eventBus_;
    constructor({ manager, eventBusService, customerService, bonusService }: {
        manager: any;
        eventBusService: any;
        customerService: any;
        bonusService: any;
    });
    handleCustomerCreated: (data: any) => Promise<void>;
    handleCustomerVerified: (data: any) => Promise<void>;
    handleCustomerUpdated: (data: any) => Promise<void>;
}
export default CustomerSubscriber;
