import { ComponentWrapper, ElementWrapper } from '@cloudscape-design/test-utils-core/dom'; export declare class SegmentWrapper extends ComponentWrapper { findDisabledReason(): ElementWrapper | null; } export default class SegmentedControlWrapper extends ComponentWrapper { static rootSelector: string; findSegments(): Array; findSelectedSegment(): ElementWrapper | null; /** * Finds the segment with the given ID. * * @param id ID of the element to return. */ findSegmentById(id: string): SegmentWrapper | null; }