import { ReactNode } from 'react'; export type McpHeaderCheckboxToggleProps = { checked: boolean; className?: string; indeterminate?: boolean; label: string; onCheckedChange: () => void; tooltip?: ReactNode; }; /** * Soft-surface checkbox control for the MCP server picker header row (e.g. * Select all / Unoptimized). The full surface is the target; the checkbox * carries selection while the surrounding control stays neutral. */ export declare function McpHeaderCheckboxToggle({ checked, className, indeterminate, label, onCheckedChange, tooltip, }: McpHeaderCheckboxToggleProps): import("react").JSX.Element; //# sourceMappingURL=header-checkbox-toggle.d.ts.map