import { ElementWrapper } from '@cloudscape-design/test-utils-core/selectors'; export { ElementWrapper }; import CodeViewWrapper from './code-view'; export { CodeViewWrapper }; declare module '@cloudscape-design/test-utils-core/dist/selectors' { interface ElementWrapper { /** * Returns a wrapper that matches the CodeViews with the specified CSS selector. * If no CSS selector is specified, returns a wrapper that matches CodeViews. * * @param {string} [selector] CSS Selector * @returns {CodeViewWrapper} */ findCodeView(selector?: string): CodeViewWrapper; /** * Returns a multi-element wrapper that matches CodeViews with the specified CSS selector. * If no CSS selector is specified, returns a multi-element wrapper that matches CodeViews. * * @param {string} [selector] CSS Selector * @returns {MultiElementWrapper} */ findAllCodeViews(selector?: string): MultiElementWrapper; } } export default function wrapper(root?: string): ElementWrapper;