import type { HotInstance } from '../../../core/types'; /** * @param {CopyPaste} copyPastePlugin The plugin instance. * @returns {object} */ interface CopyPastePluginLike { copyCellsOnly(): void; } /** * */ export default function copyItem(copyPastePlugin: CopyPastePluginLike): { key: string; name(this: HotInstance): string; callback(): void; disabled(this: HotInstance): boolean; hidden: boolean; }; export {};