import { AgComponentStub } from '../core/agComponentStub'; import type { AgComponent, AgComponentEvent } from '../interfaces/agComponent'; import type { AgCoreBeanCollection } from '../interfaces/agCoreBeanCollection'; import type { BaseEvents } from '../interfaces/baseEvents'; import type { BaseProperties } from '../interfaces/baseProperties'; import type { IPropertiesService } from '../interfaces/iProperties'; import type { StopPropagationCallbacks } from './agManagedFocusFeature'; import type { AgTabGuardParams } from './agTabGuardFeature'; import { AgTabGuardFeature } from './agTabGuardFeature'; /** @internal AG_GRID_INTERNAL - Not for public use. Can change / be removed at any time. */ export declare class AgTabGuardComp, TProperties extends BaseProperties, TGlobalEvents extends BaseEvents, TCommon, TPropertiesService extends IPropertiesService, TComponentSelectorType extends string, TLocalEventType extends string = AgComponentEvent> extends AgComponentStub { protected tabGuardFeature: AgTabGuardFeature; protected initialiseTabGuard(params: AgTabGuardParams, stopPropagationCallbacks?: StopPropagationCallbacks): void; forceFocusOutOfContainer(up?: boolean): void; appendChild(newChild: AgComponent | HTMLElement, container?: HTMLElement | undefined): void; }