import { Joi } from '../helpers'; export declare const EXPORT_REQUEST: "DEPLOYMENT/EXPORT_REQUEST"; export interface IExportRequestPayload { destinationTopics: string[]; } export interface IExportRequestAction { type: typeof EXPORT_REQUEST; payload: IExportRequestPayload; } export declare const exportRequestPayloadSchema: Joi.ObjectSchema; export declare const exportRequestActionSchema: Joi.ObjectSchema; export declare const exportRequest: import("../helpers").IActionCreator;