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