/** * @license * Copyright 2023 Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Harness } from '../testing/harness.js'; import { Tab } from './internal/tab.js'; import { Tabs } from './internal/tabs.js'; /** * Test harness for Tab. */ export declare class TabHarness extends Harness { getInteractiveElement(): Promise; private completeIndicatorAnimation; isIndicatorShowing(): Promise; } /** * Test harness for Tabs. */ export declare class TabsHarness extends Harness { getInteractiveElement(): Promise; get harnessedItems(): TabHarness[]; }