/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type HorizontalSection = 'left' | 'center' | 'right';
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type HorizontalSectionMap<T> = Record<HorizontalSection, T>;
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type VerticalSection = 'top' | 'bottom';
/** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */
export type VerticalSectionMap<T> = Record<VerticalSection, T>;
