import * as Actions from '../actions';
import { JobIncidentModel } from '@lml/cosmo-ts-data';
import { JobIncidentOption } from '../interfaces';
export interface JobsIncidentState {
    impacts: JobIncidentOption[];
    reasons: JobIncidentOption[];
    data: {
        [refId: string]: JobIncidentModel[];
    };
}
export declare const jobIncidentReducer: (state: JobsIncidentState, action: Actions.JobIncidentAction) => JobsIncidentState;
