import { Tabs } from '../../atoms/tabs'; import type * as React from "react"; export type McpSearchScope = "servers" | "tools"; export type McpSearchScopeTabsProps = { active: McpSearchScope; serverCount: number; toolCount: number; onChange?: (scope: McpSearchScope) => void; } & Omit, "value" | "onValueChange" | "onChange">; /** * MCP servers / Tools scope switcher shown above search results. Composes the * design-system `Tabs` primitive (line variant) instead of reimplementing * tablist semantics — so the underline-on-active look, keyboard nav, and * focus-ring all come from the same source as every other tab in the app. * It renders tabs and picks one-of-two, so it's named `…Tabs`, not `…Toggle`. */ export declare function McpSearchScopeTabs({ active, serverCount, toolCount, onChange, ...rest }: McpSearchScopeTabsProps): React.JSX.Element; //# sourceMappingURL=search-scope-tabs.d.ts.map