@ni/nimble-react
Version:
React components for the NI Nimble Design System
11 lines (10 loc) • 373 B
TypeScript
import { Tabs, tabsTag } from '@ni/nimble-components/dist/esm/tabs';
import { type EventName } from '../utilities/react-wrapper';
export { tabsTag };
export { type Tabs };
export declare const NimbleTabs: import("@lit/react").ReactWebComponent<Tabs, {
onChange: EventName<TabsChangeEvent>;
}>;
export interface TabsChangeEvent extends CustomEvent {
target: Tabs;
}