import { Comparator } from '@versatiledatakit/shared';
import { GridDataJobExecution } from '../../../model/data-job-execution';
/**
 * ** Execution default comparator.
 */
export declare class ExecutionDefaultComparator implements Comparator<GridDataJobExecution> {
    /**
     * ** Property path to value from GridDataJobExecution object.
     */
    readonly property: keyof GridDataJobExecution;
    /**
     * ** Sort direction.
     */
    readonly direction: 'ASC' | 'DESC';
    /**
     * ** Constructor.
     */
    constructor(property: keyof GridDataJobExecution, direction: 'ASC' | 'DESC');
    /**
     * @inheritDoc
     */
    compare(exec1: GridDataJobExecution, exec2: GridDataJobExecution): number;
}
