import type * as React from "react"; export type McpSectionCalloutProps = { /** Section title — rendered semibold. */ title: React.ReactNode; /** Short explanatory paragraph beneath the title. */ description: React.ReactNode; /** * Optional inline control rendered next to the title (e.g. an on/off switch). * Sits on the title row, close enough that the eye reads it and the title as * one unit. */ action?: React.ReactNode; } & Omit, "title" | "children">; /** * Flat section explainer shown above a stream of picker results — a semibold * title with an optional inline control, and a muted description beneath. No * card chrome, so it reads as part of the results rather than a competing * surface. The shared layout behind the Recommended and Unoptimized callouts. */ export declare function McpSectionCallout({ title, description, action, className, ...rest }: McpSectionCalloutProps): React.JSX.Element; //# sourceMappingURL=section-callout.d.ts.map