import { EventEmitter } from '@angular/core';
import { FaIconComponent } from '@fortawesome/angular-fontawesome';
export declare class JhiSortDirective {
    predicate: string;
    ascending: boolean;
    callback: Function;
    predicateChange: EventEmitter<string>;
    ascendingChange: EventEmitter<boolean>;
    activeIconComponent: FaIconComponent;
    constructor();
    sort(field: string): void;
}
