/** * Copyright © INOVUA TRADING. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { ReactNode } from 'react'; type TypeRenderMenuTool = (props: { className: string; width: number; height: number; }) => Element | ReactNode; type TypeProps = { showContextMenu?: (instance: any, onHide: (() => void) | null) => void; showOnHover?: boolean; rtl?: boolean; name?: string; renderMenuTool?: TypeRenderMenuTool; }; export declare const MenuTool: (props: TypeProps) => JSX.Element; type TypeMenuToolProps = { groupSpacerColumn?: boolean; showColumnMenuTool?: boolean; name?: string; rtl?: boolean; showColumnMenuToolOnHover?: boolean; renderMenuTool?: TypeRenderMenuTool; }; declare const _default: (props: TypeMenuToolProps, cellInstance: any) => JSX.Element | null; export default _default;