import type { TabProps } from "react-bootstrap/Tab"; import type { TabContainerProps } from "react-bootstrap/TabContainer"; import type { TabPaneProps } from "react-bootstrap/TabPane"; import type { BsPrefixPropsWithChildren } from "react-bootstrap/helpers"; export interface ITabProps extends TabProps { } export interface ITabContainerProps extends TabContainerProps { } export interface ITabPaneProps extends TabPaneProps { } export interface ITabContentProps extends BsPrefixPropsWithChildren { }