import { Joi } from '../helpers'; export declare const AVAILABLE: "JOBS/AVAILABLE"; export declare const availableActionSchema: Joi.ObjectSchema; export interface IAvailablePayload { available: boolean; interventionRequired: boolean; timestamp: number; } export interface IAvailableAction { type: typeof AVAILABLE; payload: IAvailablePayload; } export declare const available: import("../helpers").ITopicBoundActionCreator;