mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-25 23:03:36 +01:00
20 lines
537 B
TypeScript
20 lines
537 B
TypeScript
import React from 'react';
|
|
import { SelectCallback, TransitionType } from './helpers';
|
|
export interface TabsProps extends React.PropsWithChildren<unknown> {
|
|
activeKey?: unknown;
|
|
defaultActiveKey?: unknown;
|
|
onSelect?: SelectCallback;
|
|
variant?: 'tabs' | 'pills';
|
|
transition?: TransitionType;
|
|
id?: string;
|
|
mountOnEnter?: boolean;
|
|
unmountOnExit?: boolean;
|
|
}
|
|
declare const Tabs: {
|
|
(props: TabsProps): JSX.Element;
|
|
propTypes: any;
|
|
defaultProps: any;
|
|
displayName: string;
|
|
};
|
|
export default Tabs;
|