import UI5Element from "@ui5/webcomponents-base/dist/UI5Element.js"; import type { ISearchScope } from "./SearchField.js"; /** * @class * The `ui5-search-scope` represents the options for the scope in `ui5-search`. * @constructor * @extends UI5Element * @abstract * @implements {ISearchScope} * @public * @since 2.9.0 * @experimental */ declare class SearchScope extends UI5Element implements ISearchScope { /** * Defines the text of the component. * @default "" * @public */ text: string; /** * Indicates whether the item is selected * @default false * @public */ selected: boolean; get stableDomRef(): string; } export default SearchScope;