import { IContextFolderAction } from "../../actions/contextMenuAction/contextFolders/_types/IContextFolderAction"; import { IContextFolderHandlerConfig } from "../../actions/contextMenuAction/contextFolders/_types/IContextFolderHandlerConfig"; import { IContextMenuItemData } from "../../actions/contextMenuAction/_types/IContextMenuItemData"; import { IAction } from "../../actions/_types/IAction"; import { IActionBinding } from "../../actions/_types/IActionBinding"; import { IPrioritizedMenuItem } from "../../menus/menu/_types/IPrioritizedMenuItem"; /** * The default folder for all global context menu actions */ export declare const globalContextFolderHandler: IContextFolderAction; /** * Creates a binding for a global context menu item * @param item The item to add to the menu * @param folder The folder to add the item to * @returns The context action binding */ export declare function createGlobalContextBinding(item: IPrioritizedMenuItem, folder?: IContextFolderAction): IActionBinding>; /** * Creates a subfolder for the global context folder * @param config The folder configuration * @returns The folder handler action */ export declare function createGlobalContextFolderHandler(config: IContextFolderHandlerConfig): IContextFolderAction; //# sourceMappingURL=globalContextFolderHandler.d.ts.map