import type * as React from "react"; export type McpReviewCountChipProps = { /** Total selected tools — shown as the primary count. */ toolCount: number; /** Total selected MCP servers — shown as the secondary count after a divider. */ serverCount: number; /** * The chip is currently in its pressed/open state — used when a click on * the chip toggles a review pane. Adds an external ring so the active * state reads at a glance without being confused with hover. */ active?: boolean; } & Omit, "children" | "type">; /** * Compact button-chip summarising the current selection — "N tools · M * servers". Sits in the picker's selection summary bar and opens the grouped * review pane when clicked. */ export declare function McpReviewCountChip({ toolCount, serverCount, active, className, "aria-label": ariaLabel, ...rest }: McpReviewCountChipProps): React.JSX.Element; //# sourceMappingURL=review-count-chip.d.ts.map