import { RouteProps } from "react-router-dom"; export interface TabsKey { name: string; href: string; } export interface TabberWrapper { tabs: TabsKey[]; } export interface TabberContainerProps extends TabberWrapper { routes: (React.PropsWithChildren & { key: string; })[]; } export interface Props { items: TabberContainerProps; }