import { TransferColumnConfig } from '../types'; import { GridSelection } from '@glideappsfinal/glide-data-grid'; export declare const hasColumnsOnlySelection: (selection: GridSelection | null) => boolean; export declare const hasRowsOnlySelection: (selection: GridSelection | null) => boolean; export declare const getSelectedDataColumnIndexes: (selection: GridSelection | null, columns: readonly TransferColumnConfig[]) => number[]; export declare const getSelectedRowIndexes: (selection: GridSelection | null) => number[]; export declare const isContiguousIndexes: (sorted: number[]) => boolean;