import TabContainer from "react-bootstrap/TabContainer"; import TabContent from "react-bootstrap/TabContent"; import TabPane from "react-bootstrap/TabPane"; import type { ITabProps } from "./Tab.types"; import type { FC } from "react"; interface ITabWrapper extends FC { } export interface ITab extends ITabWrapper { Container: typeof TabContainer; Content: typeof TabContent; Pane: typeof TabPane; } export declare const Tab: ITab; export type { ITabProps, ITabContainerProps, ITabContentProps, ITabPaneProps } from "./Tab.types"; export default Tab;