import { EventEmitter, OnChanges, OnDestroy } from '@angular/core'; import { Subject } from 'rxjs'; import { Sort, SortDirection, Sortable } from './sort.types'; import * as i0 from "@angular/core"; export declare class SortDirective implements OnChanges, OnDestroy { sortables: Map; readonly _stateChanges: Subject; active: string; start: 'asc' | 'desc'; get direction(): SortDirection; set direction(direction: SortDirection); private _direction; readonly sortChange: EventEmitter; register(sortable: Sortable): void; deregister(sortable: Sortable): void; sort(sortable: Sortable): void; ngOnChanges(): void; ngOnDestroy(): void; static ɵfac: i0.ɵɵFactoryDeclaration; static ɵdir: i0.ɵɵDirectiveDeclaration; }