export declare const contextMenuFeatureKey = "@yap/context-menu"; export interface ContextMenuState { opened: boolean; clientX: number; clientY: number; itemId: string; from: string; resultSet: string | undefined; coordinates: number[] | undefined; } export declare const initialContextMenuState: ContextMenuState; export declare const contextMenuReducer: import("@ngrx/store").ActionReducer;