import * as Actions from '../actions';
import { JobDelayModel } from '@lml/cosmo-ts-data';
export interface JobsDelayState {
    [refId: string]: JobDelayModel;
}
export declare const initialJobDelayState: JobsDelayState;
export declare const jobDelayReducer: (state: JobsDelayState, action: Actions.JobDelayAction) => JobsDelayState;
