import { default as React } from 'react'; export type DesktopRouterTabsProps = { /** Multiple children. Typically in the form of NavLink components */ children: React.ReactNode[]; /** Determines the style of the tabs. If true, the subtabs style will be applied. */ subtabs?: boolean; /** Current path from the router */ currentPath: string; /** Refresh router tab animation */ refreshRouterTabs?: boolean; /** Optional prop to add a test id to the DesktopRouterTabs for QA testing */ qaTestId?: string; }; export default function DesktopRouterTabs({ children, subtabs, currentPath, refreshRouterTabs, qaTestId, }: DesktopRouterTabsProps): import("react/jsx-runtime").JSX.Element;