import { TreeType } from '@forten/tree-type'; import * as React from 'react'; import { Context } from '../app.js'; declare type ViewContext = { state: Context['state']; actions: Context['actions']; }; export declare const KEY_ACTIONS: { [key: string]: (ctx: ViewContext, tree: TreeType, selected: { id: string; editName: boolean; }, parentId: string | undefined, e: React.KeyboardEvent) => void; }; export {};