export type DataGridAppInteractionOwner = "drag-selection" | "fill" | "range-move" | "column-resize" | "row-resize" | "touch-pan"; export interface DataGridAppInteractionOwnerInputs { dragSelection?: boolean; fill?: boolean; rangeMove?: boolean; columnResize?: boolean; rowResize?: boolean; touchPan?: boolean; } export interface DataGridAppInteractionOwnerSnapshot { owner: DataGridAppInteractionOwner | null; activeOwners: readonly DataGridAppInteractionOwner[]; hasConflict: boolean; } export declare function resolveDataGridAppInteractionOwnerSnapshot(inputs: DataGridAppInteractionOwnerInputs): DataGridAppInteractionOwnerSnapshot; //# sourceMappingURL=dataGridInteractionOwner.d.ts.map