import type { IComponent } from '../agStack/interfaces/iComponent'; import type { AgPromise } from '../agStack/utils/promise'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export interface UserCompDetails = any> { componentClass: any; componentFromFramework: boolean; params: any; type: ComponentType; popupFromSelector?: boolean; popupPositionFromSelector?: 'over' | 'under'; newAgStackInstance: () => AgPromise; } /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export interface ComponentType { name: string; cellRenderer?: boolean; mandatoryMethods?: (keyof TComp & string)[]; optionalMethods?: (keyof TComp & string)[]; }