import type * as React from "react"; export type McpSetupCalloutProps = { /** Number of selected items that still need setup. */ count: number; onClick?: () => void; } & Omit, "children" | "title" | "onClick">; /** * A non-blocking summary of the selection's remaining setup work — the base * `Callout` with the picker's warning treatment and a count chip. Consumers * own the destination (sheet, inline flow, or page). */ export declare function McpSetupCallout({ count, className, onClick, ...rest }: McpSetupCalloutProps): React.JSX.Element; //# sourceMappingURL=setup-callout.d.ts.map