import { WrapperGS } from '../core/WrapperGS'; /** Programmatic convenience facade over the stateless gs-focus document behavior. */ export declare class FocusGroup { static readonly TagGSA = "focus"; readonly groupName: string; constructor(wrapper: WrapperGS, groupName?: string, position?: number); static AddItem(wrapper: WrapperGS): void; add(wrapper: WrapperGS, position: number): boolean; remove(wrapper: WrapperGS): void; clear(): void; }