import { Table } from "../lib/table"; import { PointType, StoreType } from "../types"; export declare const restrictPoints: (store: StoreType, table: Table) => { choosing: PointType; selectingZone: { startY: number; startX: number; endY: number; endX: number; }; copyingZone: { startY: number; startX: number; endY: number; endX: number; }; }; export declare const shouldTracking: (operation: string) => boolean; export declare const initSearchStatement: (table: Table, store: StoreType) => { matchingCells: never[]; searchQuery?: undefined; matchingCellIndex?: undefined; } | { matchingCells: string[]; searchQuery: string; matchingCellIndex: number; }; //# sourceMappingURL=helpers.d.ts.map