import { IListItemOption } from '../interface/i-list-item-option'; export declare enum ENUM_ACTION_KEYS { COLLAPSE_ALL = "Collapse All", EXPAND_ALL = "Expand All", COLLAPSE = "Collapse", EXPAND = "Expand", REFRESH = "Refresh", REPLACE = "Replace", UPLOAD = "Upload", DOWNLOAD = "Download", DUPLICATE = "Duplicate", DELETE = "Delete", HIDE = "Hide", SHOW = "Show", NEW = "New", NEW_FILE = "New File", NEW_FOLDER = "New Folder", MORE = "More", INFO = "More Information", SAVE = "Save", FORMAT = "Format", CLOSE = "Close", EDIT = "Edit", PARSE = "Parse" } export declare const ActionsConstant: { [key in ENUM_ACTION_KEYS]: IListItemOption; };