export type AgViewModePanelType = 'filters'; export type AgEditModePanelType = 'filters' | 'edit' | 'data' | 'ai'; export interface AgPanelConfig { /** Panels displayed in edit mode. */ edit?: AgPanelPosition; /** Panels displayed in view mode. */ view?: AgPanelPosition; } export interface AgPanelPosition { /** Panels to display on the left, in the order they are defined. */ left?: TPanelType[]; /** Panels to display on the right, in the order they are defined. */ right?: TPanelType[]; }