import { ComponentWrapper, ElementWrapper } from '@cloudscape-design/test-utils-core/dom'; export default class PanelLayoutWrapper extends ComponentWrapper { static rootSelector: string; /** * Returns the wrapper for the panel element. */ findPanelContent(): ElementWrapper | null; /** * Returns the wrapper for the main content element. */ findMainContent(): ElementWrapper | null; /** * Returns the wrapper for the resize handle element. * Returns null if the panel layout is not resizable. */ findResizeHandle(): ElementWrapper | null; }