export declare const RELOAD_JOBS = "RELOAD_JOBS";
export interface ReloadJobsAction {
    type: 'RELOAD_JOBS';
    showData?: string;
}
export declare type JobDataAction = ReloadJobsAction;
/**
 * Load all jobs by status
 */
export declare const reloadJobs: (showData?: string) => ReloadJobsAction;
