import type { HotInstance } from '../../../core/types'; import type { CustomBordersPlugin } from '../utils'; /** * @param {CustomBorders} customBordersPlugin The plugin instance. * @returns {object} */ export default function noBorders(customBordersPlugin: CustomBordersPlugin): { key: string; name(this: HotInstance): string; callback(key: string, selected: Record[]): void; disabled(this: HotInstance): boolean; };