import { MessageModel } from '@openassistant/core';
import { AiAssistantConfig } from './reducers';
export declare const UPDATE_AI_ASSISTANT_CONFIG = "@@openassistant/UPDATE_AI_ASSISTANT_CONFIG";
export declare const UPDATE_AI_ASSISTANT_MESSAGES = "@@openassistant/UPDATE_AI_ASSISTANT_MESSAGES";
export declare const SET_START_SCREEN_CAPTURE = "@@openassistant/SET_START_SCREEN_CAPTURE";
export declare const SET_SCREEN_CAPTURED = "@@openassistant/SET_SCREEN_CAPTURED";
export declare const SET_MAP_BOUNDARY = "@@openassistant/SET_MAP_BOUNDARY";
export declare function updateAiAssistantConfig(config: AiAssistantConfig): {
    type: string;
    payload: AiAssistantConfig;
};
export declare function updateAiAssistantMessages(messages: MessageModel[]): {
    type: string;
    payload: MessageModel[];
};
export declare function setStartScreenCapture(flag: boolean): {
    type: string;
    payload: boolean;
};
export declare function setScreenCaptured(screenshot: string): {
    type: string;
    payload: string;
};
export declare function setMapBoundary(nw: [number, number], se: [number, number]): {
    type: string;
    payload: {
        nw: [number, number];
        se: [number, number];
    };
};
