@redocly/theme
Version:
Shared UI components lib
9 lines (8 loc) • 326 B
TypeScript
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;