import type { Event as GEvent } from '@antv/g-canvas'; import type { Node } from '../../facet/layout/node'; import type { S2CellType } from './interaction'; export interface CellScrollPosition { scrollX: number; scrollY: number; thumbOffset?: number; } export interface ListSortParams { sortFieldId: string; sortMethod: string; } export declare type LayoutRow = [number, string, string]; export declare type LayoutCol = [number, string, string]; export interface TargetCellInfo { target: S2CellType; event: GEvent; viewMeta: Node; }