import type { JSX } from 'react'; import type { MCPOption } from '../../../core/types'; export type ConnectMCPProps = { placement?: 'top' | 'bottom'; alignment?: 'start' | 'end'; options?: MCPOption[]; }; export declare function ConnectMCP({ placement, alignment, options }: ConnectMCPProps): JSX.Element | null;