import type { IAnyAction } from '../helpers'; import { Joi } from '../helpers'; export declare const EXPORT_RESULT: "DEPLOYMENT/EXPORT_RESULT"; export interface IExportResultAction { type: typeof EXPORT_RESULT; payload: IAnyAction[]; } export declare const exportResultPayloadSchema: Joi.ArraySchema; export declare const exportResultActionSchema: Joi.ObjectSchema; export declare const exportResult: import("../helpers").IActionCreator;