/** @packageDocumentation * @module UnifiedSelection */ /** * Data structure that describes a [selection scope]($docs/learning/presentation/Unified-Selection/Terminology#selection-scope) * * @public */ export interface SelectionScope { /** Unique ID of the selection scope */ id: string; /** Label */ label: string; /** Description */ description?: string; } /** @alpha */ export interface ElementSelectionScopeProps { id: "element"; ancestorLevel?: number; } /** @alpha */ export declare type SelectionScopeProps = ElementSelectionScopeProps | { id: string; }; //# sourceMappingURL=SelectionScope.d.ts.map