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