import type { HotInstance } from '../../../core/types'; /** * @param {HiddenRows} hiddenRowsPlugin The plugin instance. * @returns {object} */ export default function hideRowItem(hiddenRowsPlugin: Record): { key: string; name(this: HotInstance): string; callback(this: HotInstance): void; disabled: boolean; hidden(this: HotInstance): boolean; };