import type { GridApi } from '../api/gridApi'; type TypeOrNull = T | null; type ApiRef = { /** api of the grid to align with. */ api?: TypeOrNull; } | null; /** * Alias for the grid API or an object containing the grid API for linking Aligned Grids. */ export type AlignedGrid = TypeOrNull | ApiRef | { current: ApiRef; }; export {};