import { Criteria } from '@versatiledatakit/shared';
import { GridDataJobExecution } from '../../../model';
/**
 * ** Executions Generic string filter criteria.
 */
export declare class ExecutionsStringCriteria implements Criteria<GridDataJobExecution> {
    private readonly _property;
    private readonly _searchValue;
    /**
     * ** Constructor.
     */
    constructor(property: keyof GridDataJobExecution, searchValue: GridDataJobExecution[Exclude<keyof GridDataJobExecution, 'deployment'>]);
    /**
     * @inheritDoc
     */
    meetCriteria(executions: GridDataJobExecution[]): GridDataJobExecution[];
}
