UNPKG

@awsui/components-react

Version:

On July 19th, 2022, we launched [Cloudscape Design System](https://cloudscape.design). Cloudscape is an evolution of AWS-UI. It consists of user interface guidelines, front-end components, design resources, and development tools for building intuitive, en

21 lines 877 B
/// <reference types="react" /> import { TabsProps } from './interfaces'; interface TabHeaderBarProps { onChange: (changeDetail: TabsProps.ChangeDetail) => void; activeTabId: TabsProps['activeTabId']; tabs: TabsProps['tabs']; variant: TabsProps['variant']; idNamespace: string; ariaLabel?: string; ariaLabelledby?: string; i18nStrings?: TabsProps.I18nStrings; keyboardActivationMode: Required<TabsProps['keyboardActivationMode']>; actions?: TabsProps['actions']; } export declare function TabHeaderBar({ onChange, activeTabId, tabs, variant, idNamespace, ariaLabel, ariaLabelledby, i18nStrings, keyboardActivationMode, actions, }: TabHeaderBarProps): JSX.Element; export declare function getTabElementId({ namespace, tabId }: { namespace: string; tabId: string; }): string; export {}; //# sourceMappingURL=tab-header-bar.d.ts.map