/** * @license * Copyright (c) 2017 - 2026 Vaadin Ltd. * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/ */ import type { Constructor } from '@open-wc/dedupe-mixin'; import type { KeyboardDirectionMixinClass } from '@vaadin/a11y-base/src/keyboard-direction-mixin.js'; import type { KeyboardMixinClass } from '@vaadin/a11y-base/src/keyboard-mixin.js'; import type { ListMixinClass } from '@vaadin/a11y-base/src/list-mixin.js'; import type { ResizeMixinClass } from '@vaadin/component-base/src/resize-mixin.js'; export type TabsOrientation = 'horizontal' | 'vertical'; export declare function TabsMixin>( base: T, ): Constructor & Constructor & Constructor & Constructor & Constructor & T; export declare class TabsMixinClass { /** * The index of the selected tab. */ selected: number | null | undefined; /** * Set tabs disposition. Possible values are `horizontal|vertical` */ orientation: TabsOrientation; }