import { MessageModel } from '@openassistant/core';
import { AiAssistantConfig } from './reducers';
export declare const UPDATE_AI_ASSISTANT_CONFIG: string;
export declare const UPDATE_AI_ASSISTANT_MESSAGES: string;
export declare const SET_START_SCREEN_CAPTURE: string;
export declare const SET_SCREEN_CAPTURED: string;
export declare const SET_MAP_BOUNDARY: string;
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];
    };
};
