import type { HotInstance } from '../../../core/types'; export declare const KEY = "clear_column"; /** * @returns {object} */ export default function clearColumnItem(): { key: string; name(this: HotInstance): string; callback(this: HotInstance, key: string, selection: { start: { row: number; col: number; }; end: { row: number; col: number; }; }[]): void; disabled(this: HotInstance): boolean; };