import { EventEmitter } from '@angular/core'; export declare type WheelDirection = 'up' | 'down'; export declare class MouseWheelDirective { wheelMove: EventEmitter; constructor(); wheel(event: WheelEvent): void; }