import * as Actions from '../../jobs/actions';
export interface JobSortState {
    field: string;
    order: Actions.JobSortOrder;
}
export declare const jobSortReducer: (state: JobSortState, action: any) => JobSortState;
