import React, { ReactNode, SyntheticEvent } from 'react'; import '@vonage/vwc-tab-bar'; /** * @param {number} activeIndex */ declare const VwcTabBar: (props: { children?: ReactNode; slot?: string | undefined; id?: string | undefined; style?: React.CSSProperties | undefined; ref?: React.RefObject | ((instance: HTMLDivElement | null) => void) | null | undefined; onActivated?: ((event: SyntheticEvent) => void) | undefined; activeIndex?: number | undefined; }) => JSX.Element; export default VwcTabBar;