/** * Copyright © INOVUA TRADING. * * This source code is licensed under the Commercial License found in the * LICENSE file in the root directory of this source tree. */ import { MutableRefObject } from 'react'; import { TypeDataGridProps, TypeComputedProps } from '../../../types'; declare const useClipboard: (_props: TypeDataGridProps, computedProps: TypeComputedProps, computedPropsRef: MutableRefObject) => { copyActiveRowToClipboard: () => void; pasteActiveRowFromClipboard: () => void; copySelectedCellsToClipboard: () => void; pasteSelectedCellsFromClipboard: () => void; copySelectedRowsToClipboard: () => void; pasteSelectedRowsFromClipboard: () => void; clipboard: MutableRefObject; preventBlurOnContextMenuOpen: MutableRefObject; } | null; export { useClipboard };