declare enum MessageContext {
    /**
     * Open folder after a download completes.
     */
    OPEN_FOLDER = "openfolder",
    /**
     * Send a request to open an OS folder selection dialog to choose the location of the
     * downloaded folder.
     */
    OPEN_FOLDER_SELECT = "openfolderselect",
    /**
     * The acknowledgement from the app that the folder has been selected.
     */
    FOLDER_SELECT = "folderselect",
    /**
     * The acknowledgement from the app that files have been selected.
     */
    FILE_SELECTED = "fileselect",
    /**
     * Request to open the file chooser
     */
    OPEN_FILE_SELECT = "openfileselect",
    /**
     * Ask the App to start a download transfer.
     */
    DOWNLOAD = "download",
    /**
     * Ask the App to start an upload transfer.
     */
    UPLOAD = "upload",
    /**
     * Cancel a transfer which is in progress
     */
    CANCEL_TRANSFER = "canceltransfer",
    /**
     * Gets information about the client and autodelivery
     */
    GET_AUTODELIVERY_INFO = "getautodeliveryinfo",
    /**
     * Used to indicate that file to upload have been deselected/removed
     */
    FILES_DELETED_EVENT = "filesdeletedevent"
}
export default MessageContext;
//# sourceMappingURL=MessageContext.d.ts.map